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:
parent
056e79f261
commit
87cdba8e4b
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user