���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/lnovel/layout/default/node_modules/xtend/ |
# xtend Extend like a boss xtend is a basic utility library which allows you to extend an object by appending all of the properties from each object in a list. When there are identical properties, the right-most property takes presedence. ## Examples Basic usage: var extend = require('xtend'), a = { 'I': 'am' }, b = { 'a': 'boss' }; extend(a, b); console.log('I ', a.I, ' a ', a.a); Extend with multiple objects: var extend = require('xtend'), a = { 'w': 'I' }, b = { 'x': 'am' }, c = { 'y': 'a' }, d = { 'z': 'boss' } boss = extend({}, a, b, c, d); console.log(boss.w, ' ', boss.x, ' ', boss.y, ' ', boss.z); Right-most precendence: var extend = require("xtend"), a = { "p": 1 }, b = { "p": 2 } c = { "p": 3 }, boss = extend({}, a, b, c); console.log(boss.p); // Logs 3 ## MIT Licenced