initial commit
This commit is contained in:
22
node_modules/is-builtin-module/index.d.ts
generated
vendored
Normal file
22
node_modules/is-builtin-module/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
Returns `true` if the given `moduleName` is a Node.js builtin module, `false` otherwise.
|
||||
|
||||
@param moduleName - The name of the module.
|
||||
|
||||
@example
|
||||
```
|
||||
import isBuiltinModule = require('is-builtin-module');
|
||||
|
||||
isBuiltinModule('fs/promises');
|
||||
//=> true
|
||||
|
||||
isBuiltinModule('node:fs');
|
||||
//=> true
|
||||
|
||||
isBuiltinModule('unicorn');
|
||||
//=> false
|
||||
```
|
||||
*/
|
||||
declare function isBuiltinModule(moduleName: string): boolean;
|
||||
|
||||
export = isBuiltinModule;
|
||||
Reference in New Issue
Block a user