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. --- .../Front/node_modules/lodash/isInteger.js | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/lodash/isInteger.js (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/isInteger.js') diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/isInteger.js b/sandbox/testAppNevena/Front/node_modules/lodash/isInteger.js deleted file mode 100644 index 66aa87d5..00000000 --- a/sandbox/testAppNevena/Front/node_modules/lodash/isInteger.js +++ /dev/null @@ -1,33 +0,0 @@ -var toInteger = require('./toInteger'); - -/** - * Checks if `value` is an integer. - * - * **Note:** This method is based on - * [`Number.isInteger`](https://mdn.io/Number/isInteger). - * - * @static - * @memberOf _ - * @since 4.0.0 - * @category Lang - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is an integer, else `false`. - * @example - * - * _.isInteger(3); - * // => true - * - * _.isInteger(Number.MIN_VALUE); - * // => false - * - * _.isInteger(Infinity); - * // => false - * - * _.isInteger('3'); - * // => false - */ -function isInteger(value) { - return typeof value == 'number' && value == toInteger(value); -} - -module.exports = isInteger; -- cgit v1.2.3