From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../testAppNevena/Front/node_modules/lodash/pad.js | 49 ---------------------- 1 file changed, 49 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/pad.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/pad.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/pad.js b/sandbox/testAppNevena/Front/node_modules/lodash/pad.js deleted file mode 100644 index 77e1f1c1..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/pad.js +++ /dev/null @@ -1,49 +0,0 @@ -var createPadding = require('./_createPadding'), - stringSize = require('./_stringSize'), - toInteger = require('./toInteger'), - toString = require('./toString'); - -/* Built-in method references for those with the same name as other `lodash` methods. */ -var nativeCeil = Math.ceil, - nativeFloor = Math.floor; - -/** - * Pads `string` on the left and right sides if it's shorter than `length`. - * Padding characters are truncated if they can't be evenly divided by `length`. - * - * @static - * @memberOf _ - * @since 3.0.0 - * @category String - * @param {string} [string=''] The string to pad. - * @param {number} [length=0] The padding length. - * @param {string} [chars=' '] The string used as padding. - * @returns {string} Returns the padded string. - * @example - * - * _.pad('abc', 8); - * // => ' abc ' - * - * _.pad('abc', 8, '_-'); - * // => '_-abc_-_' - * - * _.pad('abc', 3); - * // => 'abc' - */ -function pad(string, length, chars) { - string = toString(string); - length = toInteger(length); - - var strLength = length ? stringSize(string) : 0; - if (!length || strLength >= length) { - return string; - } - var mid = (length - strLength) / 2; - return ( - createPadding(nativeFloor(mid), chars) + - string + - createPadding(nativeCeil(mid), chars) - ); -} - -module.exports = pad; -- cgit v1.2.3