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 1.1.4 to 1.2.0

41

index.js

@@ -73,9 +73,3 @@ (function (owner) {

if (this.isNull(str1) || this.isNull(str2)) return false;
if (self.isArray(str1)) {
return self.each(str1, function (i, str) {
if (str == str2) return true;
});
} else {
return str1 && str2 && str1.indexOf(str2) > -1;
}
return str1.indexOf(str2) > -1;
};

@@ -500,6 +494,4 @@

var newArray = [];
var map = {};
this.each(array, function (i, value) {
if (map[value]) return;
map[value] = true;
if (newArray.indexOf(value) > -1) return;
newArray.push(value);

@@ -525,31 +517,2 @@ });

/**
* 处理URL
* @method wrapUrl
* @param {String} _url 原始URL
* @return {String} 处理过的URL
* @static
*/
owner.wrapUrl = function (url) {
if (this.isNull(url)) return url;
if (url.indexOf('?') > -1) {
url += "&__t=" + this.newGuid();
} else {
url += "?__t=" + this.newGuid();
}
return url;
};
/**
* 休眼
* @method sleep
* @param {Number} s 休眠时间(毫秒)
* @static
*/
owner.sleep = function (s) {
var time = (new Date()).getTime() + s;
while ((new Date()).getTime() + 1 < time);
return;
};
/**
* 合并对象

@@ -556,0 +519,0 @@ * @method mix

4

package.json
{
"name": "ntils",
"version": "1.1.4",
"version": "1.2.0",
"description": "一个 Node & Browser 工具函数集",

@@ -25,2 +25,2 @@ "main": "index.js",

"homepage": "https://github.com/Houfeng/ntils#readme"
}
}
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