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

jeefo_core

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jeefo_core - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

2

package.json
{
"name": "jeefo_core",
"version": "0.0.10",
"version": "0.0.11",
"homepage": "https://github.com/je3f0o/jeefo_core",

@@ -5,0 +5,0 @@ "copyright": "2017",

/* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
* File Name : core.js
* Created at : 2017-04-08
* Updated at : 2017-05-07
* Updated at : 2017-05-10
* Author : jeefo

@@ -98,2 +98,15 @@ * Purpose :

} catch (e) {}
},
JeefoObject = function () {};
JeefoObject.prototype = {
Array : Array,
JeefoObject : JeefoObject,
$new : function () {
return new this.JeefoObject();
},
$copy : function () {
return this.assign(new this.JeefoObject(), this);
},
};

@@ -138,2 +151,16 @@

namespace("JeefoObject", ["object.assign"], function (assign) {
if (JeefoObject.create) {
JeefoObject.create = function (object) {
return assign(new JeefoObject(), object);
};
}
if (! JeefoObject.prototype.assign) {
JeefoObject.prototype.assign = assign;
}
return JeefoObject;
}).
namespace("transform.dash_case", function () {

@@ -140,0 +167,0 @@ return dash_case;

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