kaguranana-birthday-project/node_modules/is-core-module
ameyoyo 9a8113aca4 initial 2021-12-12 18:49:32 -08:00
..
test initial 2021-12-12 18:49:32 -08:00
.eslintignore initial 2021-12-12 18:49:32 -08:00
.eslintrc initial 2021-12-12 18:49:32 -08:00
.nycrc initial 2021-12-12 18:49:32 -08:00
CHANGELOG.md initial 2021-12-12 18:49:32 -08:00
LICENSE initial 2021-12-12 18:49:32 -08:00
README.md initial 2021-12-12 18:49:32 -08:00
core.json initial 2021-12-12 18:49:32 -08:00
index.js initial 2021-12-12 18:49:32 -08:00
package.json initial 2021-12-12 18:49:32 -08:00

README.md

is-core-module Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Is this specifier a node.js core module? Optionally provide a node version to check; defaults to the current node version.

Example

var isCore = require('is-core-module');
var assert = require('assert');
assert(isCore('fs'));
assert(!isCore('butts'));

Tests

Clone the repo, npm install, and run npm test