mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
JS: Add some lines in test case
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -361,6 +361,22 @@ function mergePlainObjectsOnly(target, source) {
|
||||
return target;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
function forEachProp(obj, callback) {
|
||||
for (let key in obj) {
|
||||
if (obj.hasOwnProperty(key)) {
|
||||
|
||||
Reference in New Issue
Block a user