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

nyks

Package Overview
Dependencies
Maintainers
1
Versions
250
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nyks - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

8

package.json
{
"name": "nyks",
"version": "0.1.0",
"version": "0.1.1",
"description": "nodejs exupery style",

@@ -11,7 +11,5 @@ "keywords": [

"dependencies": {
"mootools": "*",
"mootools-more" : "*",
"ini" : "*"
"mootools": "*",
"mootools-more": "*"
},
"homepage": "http://github.com/131/nyks",

@@ -18,0 +16,0 @@ "main": "./index.js",

@@ -19,2 +19,6 @@ nyks provide a set of "missing" stuffs in nodejs basic api.

# Natives
## Object
* Object.sort(obj, keys)
Return a new object based on obj's existings keys
## Buffer

@@ -21,0 +25,0 @@ * Buffer.prototype.indexOf(byte)

@@ -9,2 +9,10 @@ Buffer.implement({

Object.sort = function(that, keys){
var o = {};
Array.each(keys, function(k){
if(k in that) o[k] = that[k];
});
return o;
};
String.implement({

@@ -11,0 +19,0 @@ startsWith: function(str){

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