npm.io
2.0.3 • Published 13 years ago

jquery-extend

Licence
MIT
Version
2.0.3
Deps
0
Vulns
0
Weekly
0
DeprecatedThis package is deprecated

jquery-extend

The point of this module is to provide the most up-to-date version of jQuery's .extend function for server-side use.

This function's operation is 100% backed by jQuery's own testing suite.

The API is identical to jQuery.extend

Example

var extend = require("jquery-extend");
var a = {a: {b: "c", d: "e"}};
var b = {a: {b: "x", f: "g"}};

// shallow copy
extend({}, a, b);       //=> {a: {b: "x", f: "g"}}

// deep copy
extend(true, {}, a, b); //=> {a: {b: "x", d: "e", f: "g"}}

Tests

Test suite depends on qunit

$ npm test
License

Copyright 2013 jQuery Foundation and other contributors http://jquery.com/

Keywords