New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

core-functions

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

core-functions - npm Package Compare versions

Comparing version 3.0.13 to 3.0.14

1

any.js

@@ -8,2 +8,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.defined = defined;

@@ -10,0 +11,0 @@ exports.notDefined = notDefined;

@@ -18,2 +18,3 @@ "use strict";

*/
exports._ = '_'; //IDE workaround
// Error conversion functions

@@ -20,0 +21,0 @@ exports.toAppError = toAppError;

@@ -6,2 +6,3 @@ /**

*/
exports._ = '_'; //IDE workaround
exports.distinct = distinct;

@@ -8,0 +9,0 @@ exports.isDistinct = isDistinct;

@@ -12,2 +12,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.toBase64 = toBase64;

@@ -14,0 +15,0 @@ exports.fromBase64 = fromBase64;

@@ -8,2 +8,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.isBoolean = isBoolean;

@@ -10,0 +11,0 @@ exports.isTrueOrFalse = isTrueOrFalse;

@@ -21,5 +21,7 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
// Public API
// noinspection JSDeprecatedSymbols
exports.copy = copy;
// noinspection JSDeprecatedSymbols
exports.copyNamedProperties = copyNamedProperties;

@@ -26,0 +28,0 @@ exports.copyDescriptor = copyDescriptor;

@@ -20,2 +20,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
// Regular expressions

@@ -22,0 +23,0 @@ exports.simpleISODateTimeRegex = simpleISODateTimeRegex;

@@ -8,2 +8,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.setTypeName = setTypeName;

@@ -10,0 +11,0 @@ exports.prefixMessage = prefixMessage;

@@ -23,3 +23,5 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
// Public API
// noinspection JSDeprecatedSymbols
exports.merge = merge;

@@ -26,0 +28,0 @@

@@ -20,2 +20,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.isNumber = isNumber;

@@ -22,0 +23,0 @@ exports.isFiniteNumber = isFiniteNumber;

@@ -16,2 +16,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.isTypedArray = isTypedArray;

@@ -18,0 +19,0 @@ exports.getPropertyNames = getPropertyNames;

2

package.json
{
"name": "core-functions",
"version": "3.0.13",
"version": "3.0.14",
"description": "Core functions, utilities and classes for working with Node/JavaScript primitives and built-in objects, including strings, booleans, Promises, base 64, Arrays, Objects, standard AppErrors, etc.",

@@ -5,0 +5,0 @@ "author": "Byron du Preez",

@@ -14,2 +14,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.isPromise = isPromise;

@@ -16,0 +17,0 @@ exports.isPromiseLike = isPromiseLike;

@@ -1,2 +0,2 @@

# core-functions v3.0.13
# core-functions v3.0.14

@@ -3,0 +3,0 @@ Core functions, utilities and classes for working with Node/JavaScript primitives and built-in objects, including

## Changes
### 3.0.14
- Added dummy first exports (`exports._ = '_'; //IDE workaround`) to most modules as a temporary workaround for IDE issue
### 3.0.13

@@ -4,0 +7,0 @@ - Changed almost all exports to modifications of the default `exports` object instead of replacing the default object

@@ -15,2 +15,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.compareUndefinedOrNull = compareUndefinedOrNull;

@@ -17,0 +18,0 @@ exports.compareNumbers = compareNumbers;

@@ -12,2 +12,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.isString = isString;

@@ -14,0 +15,0 @@ exports.isBlank = isBlank;

@@ -7,11 +7,10 @@ 'use strict';

*/
module.exports = {
okNotOk: okNotOk,
checkOkNotOk: checkOkNotOk,
checkMethodOkNotOk: checkMethodOkNotOk,
equal: equal,
checkEqual: checkEqual,
checkMethodEqual: checkMethodEqual,
immutable: immutable
};
exports._ = '_'; //IDE workaround
exports.okNotOk = okNotOk;
exports.checkOkNotOk = checkOkNotOk;
exports.checkMethodOkNotOk = checkMethodOkNotOk;
exports.equal = equal;
exports.checkEqual = checkEqual;
exports.checkMethodEqual = checkMethodEqual;
exports.immutable = immutable;

@@ -18,0 +17,0 @@ const Strings = require('../strings');

@@ -10,2 +10,3 @@ 'use strict';

*/
exports._ = '_'; //IDE workaround
exports.cancelTimeout = cancelTimeout;

@@ -12,0 +13,0 @@ exports.cancelInterval = cancelInterval;

'use strict';
exports._ = '_'; //IDE workaround
const errorMessages = {

@@ -4,0 +6,0 @@ NoValueOrError: 'No value or error'

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc