mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-03-12 17:05:14 +00:00
Update std.js
This commit is contained in:
parent
3d71c4d5bc
commit
fe075354fc
16
lib/std.js
16
lib/std.js
|
@ -10,6 +10,7 @@
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
// Polyfills
|
// Polyfills
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
if (!Function.prototype.GetResource) {
|
if (!Function.prototype.GetResource) {
|
||||||
Function.prototype.GetResource = function(ResourceName) {
|
Function.prototype.GetResource = function(ResourceName) {
|
||||||
if (!this.Resources) {
|
if (!this.Resources) {
|
||||||
|
@ -29,14 +30,17 @@ if (!Function.prototype.GetResource) {
|
||||||
|
|
||||||
if (!Enumerator.prototype.toArray) {
|
if (!Enumerator.prototype.toArray) {
|
||||||
Enumerator.prototype.toArray = function() {
|
Enumerator.prototype.toArray = function() {
|
||||||
var items = [];
|
var a = [];
|
||||||
for (; !this.atEnd(); this.moveNext()) {
|
for (; !this.atEnd(); this.moveNext()) {
|
||||||
var item = this.item();
|
var x = {};
|
||||||
try {
|
var b = new Enumerator(this.item().Properties_);
|
||||||
items.push(item);
|
for (; !b.atEnd(); b.moveNext()) {
|
||||||
} catch (e) {}
|
var c = b.item();
|
||||||
|
x[c.name] = c.value;
|
||||||
|
}
|
||||||
|
a.push(x);
|
||||||
}
|
}
|
||||||
return items;
|
return a;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user