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

Remove Indexed.

This commit is contained in:
Rob Rix 2015-10-23 17:19:18 -04:00
parent aef4e18518
commit d75322e37e

View File

@ -207,14 +207,6 @@
return element;
}
function Indexed(array, continuation) {
this.values = [];
for (index in array) {
this.values.push(continuation(array[index]));
}
return this;
}
function Dictionary(object) {
this.values = {};
for (key in object) {