1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00

Replaced Keyed with Dictionary.

This commit is contained in:
Rob Rix 2015-10-23 17:16:19 -04:00
parent 056e79f261
commit 87cdba8e4b

View File

@ -215,10 +215,10 @@
return this;
}
function Keyed(object, continuation) {
function Dictionary(object) {
this.values = {};
for (key in object) {
this.values[key] = continuation(object[key]);
this.values[key] = object[key];
}
return this;
}