mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 23:37:18 -04:00
11 lines
225 B
JavaScript
11 lines
225 B
JavaScript
'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;
|
|
};
|