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

ntils

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ntils - npm Package Compare versions

Comparing version 2.0.4 to 2.0.5

8

index.js

@@ -462,7 +462,7 @@ (function (ntils) {

*/
ntils.setProto = function (obj, prototype) {
if (obj.__proto__) {
return ntils.setPrototype(obj.__proto__);
ntils.setPrototypeOf = function (obj, proto) {
if (Object.setPrototypeOf) {
return Object.setPrototypeOf(obj, proto);
} else {
obj.__proto__ = prototype;
obj.__proto__ = proto;
}

@@ -469,0 +469,0 @@ };

{
"name": "ntils",
"version": "2.0.4",
"version": "2.0.5",
"description": "一个 Node & Browser 工具函数集",

@@ -5,0 +5,0 @@ "main": "index.js",

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