mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-21 07:50:37 +01:00
Deprecate utils.walk, remove prototype modification
This commit is contained in:
@@ -2,9 +2,13 @@
|
||||
|
||||
(function (factory) {
|
||||
if (typeof module === 'object' && module.exports) {
|
||||
var winston = require('winston');
|
||||
|
||||
var file = require('../../src/file');
|
||||
module.exports = factory(require('xregexp'));
|
||||
module.exports.walk = function (dir, done) {
|
||||
// DEPRECATED
|
||||
winston.warn('[deprecated] `utils.walk` is deprecated. Use `file.walk` instead.');
|
||||
file.walk(dir, done);
|
||||
};
|
||||
|
||||
@@ -424,11 +428,5 @@
|
||||
};
|
||||
}
|
||||
|
||||
if (typeof String.prototype.rtrim !== 'function') {
|
||||
String.prototype.rtrim = function () {
|
||||
return this.replace(/\s+$/g, '');
|
||||
};
|
||||
}
|
||||
|
||||
return utils;
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user