A minimal ESM package to test module importing in other tools.
Install from npm:
npm install @zachleat/noop
Usage:
// ESM
import { noop, noopSync } from "@zachleat/noop";
// Dynamic Import
const { noop, noopSync } = await import("@zachleat/noop");
// CommonJS
const { noop, noopSync } = require("@zachleat/noop");