Permalink
Newer
100644
54 lines (40 sloc)
1.01 KB
10
Object.keys(add).forEach(function (prop) {
11
if (!result.hasOwnProperty(prop)) {
12
result[prop] = add[prop];
23
// Fix UTF8 with BOM
24
if (script.charCodeAt(0) === 0xFEFF) {
25
script = script.slice(1);
26
}
27