aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/utility.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utility.js b/src/utility.js
index 91c4abe3..ba97a399 100644
--- a/src/utility.js
+++ b/src/utility.js
@@ -248,10 +248,10 @@ function set() {
}
function setSub(x, y) {
- var ret = set(values(x));
+ var ret = set(keys(x));
for (yy in y) {
if (yy in ret) {
- delete ret.yy;
+ delete ret[yy];
}
}
return ret;