Files
meteor/scripts/rm-core-utils.js
Ben Newman 9ca5b27977 Replace useless core-util-is module with empty stub.
Loading this package triggers a ReferenceError if Buffer is not globally
defined. However, this package never uses Buffer.isBuffer, and in fact
none of this package's properties are ever used by any other packages in
meteor-node-stubs, so it seems safe to replace it with an empty stub.
2017-06-02 15:34:04 -04:00

4 lines
105 B
JavaScript

require("rimraf").sync(require("path").join(
__dirname, "..", "node_modules", "**", "core-util-is"
));