import js.glob.*;
class Main
{
static function main()
{
// Glob function
Glob.glob("**/*.js", options, function (error, files) {
// files is an array of filenames.
// If the `nonull` option is set, and nothing
// was found, then files is ["**/*.js"]
// er is an error object or null.
});
// Glob object
var glob = new GlobObject("**/*.js", options, function (error, files) {
// files is an array of filenames.
// If the `nonull` option is set, and nothing
// was found, then files is ["**/*.js"]
// er is an error object or null.
});
glob.pause(); //...
}
}
-
Notifications
You must be signed in to change notification settings - Fork 0
NodeJS glob library extern
License
ExternKit/extern-js-glob
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
NodeJS glob library extern
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published