All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.is-builtin-module.index.js Maven / Gradle / Ivy

The newest version!
'use strict';
var builtinModules = require('builtin-modules');

module.exports = function (str) {
	if (typeof str !== 'string') {
		throw new TypeError('Expected a string');
	}

	return builtinModules.indexOf(str) !== -1;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy