Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pnp/odata

Package Overview
Dependencies
Maintainers
13
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnp/odata - npm Package Compare versions

Comparing version 2.8.0 to 2.9.0

4

invokable-binder.js

@@ -16,4 +16,4 @@ import { __read, __spreadArray } from "tslib";

}
return invoker.call.apply(invoker, __spreadArray([r], __read(ags)));
}, new (constructor.bind.apply(constructor, __spreadArray([void 0], __read(as))))());
return invoker.call.apply(invoker, __spreadArray([r], __read(ags), false));
}, new (constructor.bind.apply(constructor, __spreadArray([void 0], __read(as), false)))());
Reflect.setPrototypeOf(r, constructor.prototype);

@@ -20,0 +20,0 @@ return r;

@@ -54,3 +54,3 @@ import { __read, __spreadArray } from "tslib";

if (Array.isArray(e)) {
a.push.apply(a, __spreadArray([], __read(e)));
a.push.apply(a, __spreadArray([], __read(e), false));
}

@@ -104,6 +104,6 @@ else {

if (Reflect.has(target, ObjExtensionsSym)) {
extensions.push.apply(extensions, __spreadArray([], __read(Reflect.get(target, ObjExtensionsSym))));
extensions.push.apply(extensions, __spreadArray([], __read(Reflect.get(target, ObjExtensionsSym)), false));
}
// second we need to process any global extensions
extensions.push.apply(extensions, __spreadArray([], __read(globalExtensions)));
extensions.push.apply(extensions, __spreadArray([], __read(globalExtensions), false));
for (var i = 0; i < extensions.length; i++) {

@@ -114,3 +114,3 @@ var extension = extensions[i];

// this extension is a function which we call
result = extension.apply(void 0, __spreadArray([op, target], __read(rest)));
result = extension.apply(void 0, __spreadArray([op, target], __read(rest), false));
}

@@ -123,3 +123,3 @@ else if (op === "get" && Reflect.has(extension, rest[0])) {

// this extension is a ProxyHandler that has a handler defined for {op} so we pass control and see if we get a result
result = Reflect.get(extension, op).apply(void 0, __spreadArray([target], __read(rest)));
result = Reflect.get(extension, op).apply(void 0, __spreadArray([target], __read(rest), false));
}

@@ -134,4 +134,4 @@ if (typeof result !== "undefined") {

}
return or.apply(void 0, __spreadArray([target], __read(rest)));
return or.apply(void 0, __spreadArray([target], __read(rest), false));
}
//# sourceMappingURL=invokable-extensions.js.map
{
"name": "@pnp/odata",
"version": "2.8.0",
"version": "2.9.0",
"description": "pnp - provides shared odata functionality and base classes",

@@ -9,4 +9,4 @@ "main": "./index.js",

"tslib": "2.3.0",
"@pnp/logging": "2.8.0",
"@pnp/common": "2.8.0"
"@pnp/logging": "2.9.0",
"@pnp/common": "2.9.0"
},

@@ -13,0 +13,0 @@ "author": {

@@ -15,3 +15,3 @@ import { __read, __spreadArray } from "tslib";

case "query":
return JSON.stringify(__spreadArray([], __read(value)));
return JSON.stringify(__spreadArray([], __read(value), false));
case "batch":

@@ -18,0 +18,0 @@ case "batchDependency":

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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