包详细信息

@zachleat/noop

zachleat2kMIT1.0.6

A minimal module to test importing in other tools.

自述文件

@zachleat/noop

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");

// Explicit ESM
import { noop, noopSync } from "@zachleat/noop/esm";

// Explicit CommonJS
const { noop, noopSync } = require("@zachleat/noop/cjs");