• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

KSDaemon / nunjucks-intl / 3664988189

pending completion
3664988189

Pull #62

github

GitHub
Merge b6c04093c into 038e468ac
Pull Request #62: Bump qs from 6.5.2 to 6.5.3

36 of 40 branches covered (90.0%)

Branch coverage included in aggregate %.

110 of 119 relevant lines covered (92.44%)

6.03 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

90.0
/src/utils.js
1
/*
2
Copyright (c) 2014, Yahoo! Inc. All rights reserved.
3
Copyrights licensed under the New BSD License.
4
See the accompanying LICENSE file for terms.
5
*/
6

7
function extend(obj) {
8
    var sources = Array.prototype.slice.call(arguments, 1),
3✔
9
        i, len, source, key;
10

11
    for (i = 0, len = sources.length; i < len; i += 1) {
3✔
12
        source = sources[i];
6✔
13
        if (!source) { continue; }
6!
14

15
        for (key in source) {
6✔
16
            if (source.hasOwnProperty(key)) {
9✔
17
                obj[key] = source[key];
9✔
18
            }
19
        }
20
    }
21

22
    return obj;
3✔
23
}
24

25
export {extend};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc