From 20204baf1807825af4798ad03bfb329e4da05bc5 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 21 Dec 2021 16:50:49 +0100 Subject: Commit --- node_modules/colors/safe.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 node_modules/colors/safe.js (limited to 'node_modules/colors/safe.js') diff --git a/node_modules/colors/safe.js b/node_modules/colors/safe.js new file mode 100644 index 0000000..a013d54 --- /dev/null +++ b/node_modules/colors/safe.js @@ -0,0 +1,10 @@ +// +// Remark: Requiring this file will use the "safe" colors API, +// which will not touch String.prototype. +// +// var colors = require('colors/safe'); +// colors.red("foo") +// +// +var colors = require('./lib/colors'); +module['exports'] = colors; -- cgit