Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

jquery-extend

dnukem65.9kMITdeprecated2.0.3

this package has been deprecated

jQuery.extend function; plain and simple

jquery, extend, merge, deepCopy, clone

readme

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/