From 23563c7188e089929b60f9e10721c6fc43a220ff Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Thu, 22 Jun 2023 23:06:12 +0200 Subject: Updated 15 files, added includes/maintenance/deleteUnusedAssets.php and deleted 4944 files (automated) --- .../external/school/node_modules/lodash/replace.js | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 includes/external/school/node_modules/lodash/replace.js (limited to 'includes/external/school/node_modules/lodash/replace.js') diff --git a/includes/external/school/node_modules/lodash/replace.js b/includes/external/school/node_modules/lodash/replace.js deleted file mode 100644 index 6e26ecd..0000000 --- a/includes/external/school/node_modules/lodash/replace.js +++ /dev/null @@ -1,29 +0,0 @@ -var toString = require('./toString'); - -/** - * Replaces matches for `pattern` in `string` with `replacement`. - * - * **Note:** This method is based on - * [`String#replace`](https://mdn.io/String/replace). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category String - * @param {string} [string=''] The string to modify. - * @param {RegExp|string} pattern The pattern to replace. - * @param {Function|string} replacement The match replacement. - * @returns {string} Returns the modified string. - * @example - * - * _.replace('Hi Fred', 'Fred', 'Barney'); - * // => 'Hi Barney' - */ -function replace() { - var args = arguments, - string = toString(args[0]); - - return args.length < 3 ? string : string.replace(args[1], args[2]); -} - -module.exports = replace; -- cgit