หลายคนใช้การใช้งาน fallback MDC (เช่นสำหรับindexOf ) โดยทั่วไปแล้วจะเป็นไปตามมาตรฐานอย่างเข้มงวดแม้ในการตรวจสอบประเภทของข้อโต้แย้งทั้งหมดอย่างชัดเจน
น่าเสียดายที่ผู้เขียนเห็นว่ารหัสนี้เป็นเพียงเรื่องเล็กน้อยและสามารถใช้งานได้อย่างอิสระ แต่ดูเหมือนว่าจะไม่มีการอนุญาตให้ใช้สิทธิ์อย่างชัดเจนในการเขียนนี้ wiki โดยรวมคือ CC Attribution-ShareAlike ถ้าเป็นใบอนุญาตที่ยอมรับได้ (แม้ว่า CC จะไม่ได้รับการออกแบบมาสำหรับรหัสเช่นนั้น)
js-methods ดูตกลงโดยทั่วไป แต่ไม่เป็นไปตามมาตรฐานรอบขอบของวิธีการทำงานที่ควรจะเป็น (เช่นรายการที่ไม่ได้กำหนดรายการฟังก์ชั่นที่กลายพันธุ์รายการ) นอกจากนี้ยังเต็มไปด้วยวิธีการที่ไม่ได้มาตรฐานแบบสุ่มอื่น ๆ รวมถึงวิธีที่น่าสงสัยบางอย่างเช่น dodgy stripTags และตัวแปลงสัญญาณ UTF-8 ที่ไม่สมบูรณ์ (ซึ่งก็ไม่จำเป็นunescape(encodeURIComponent)
ด้วย
สำหรับสิ่งที่คุ้มค่านี่คือสิ่งที่ฉันใช้ (ซึ่งฉันจะปล่อยสู่สาธารณสมบัติหากสามารถกล่าวได้ว่ามีลิขสิทธิ์) มันสั้นกว่ารุ่น MDC เล็กน้อยเนื่องจากไม่ได้พยายามพิมพ์ sniff ที่คุณไม่ได้ทำอะไรโง่ ๆ เช่น pass call ที่ไม่ใช่ฟังก์ชั่นหรือดัชนีที่ไม่ใช่จำนวนเต็ม แต่นอกเหนือจากนั้นก็พยายามที่จะเป็นไปตามมาตรฐาน (แจ้งให้เราทราบหากฉันไม่ได้รับอะไรเลย ;-))
'use strict';
// Add ECMA262-5 method binding if not supported natively
//
if (!('bind' in Function.prototype)) {
Function.prototype.bind= function(owner) {
var that= this;
if (arguments.length<=1) {
return function() {
return that.apply(owner, arguments);
};
} else {
var args= Array.prototype.slice.call(arguments, 1);
return function() {
return that.apply(owner, arguments.length===0? args : args.concat(Array.prototype.slice.call(arguments)));
};
}
};
}
// Add ECMA262-5 string trim if not supported natively
//
if (!('trim' in String.prototype)) {
String.prototype.trim= function() {
return this.replace(/^\s+/, '').replace(/\s+$/, '');
};
}
// Add ECMA262-5 Array methods if not supported natively
//
if (!('indexOf' in Array.prototype)) {
Array.prototype.indexOf= function(find, i /*opt*/) {
if (i===undefined) i= 0;
if (i<0) i+= this.length;
if (i<0) i= 0;
for (var n= this.length; i<n; i++)
if (i in this && this[i]===find)
return i;
return -1;
};
}
if (!('lastIndexOf' in Array.prototype)) {
Array.prototype.lastIndexOf= function(find, i /*opt*/) {
if (i===undefined) i= this.length-1;
if (i<0) i+= this.length;
if (i>this.length-1) i= this.length-1;
for (i++; i-->0;) /* i++ because from-argument is sadly inclusive */
if (i in this && this[i]===find)
return i;
return -1;
};
}
if (!('forEach' in Array.prototype)) {
Array.prototype.forEach= function(action, that /*opt*/) {
for (var i= 0, n= this.length; i<n; i++)
if (i in this)
action.call(that, this[i], i, this);
};
}
if (!('map' in Array.prototype)) {
Array.prototype.map= function(mapper, that /*opt*/) {
var other= new Array(this.length);
for (var i= 0, n= this.length; i<n; i++)
if (i in this)
other[i]= mapper.call(that, this[i], i, this);
return other;
};
}
if (!('filter' in Array.prototype)) {
Array.prototype.filter= function(filter, that /*opt*/) {
var other= [], v;
for (var i=0, n= this.length; i<n; i++)
if (i in this && filter.call(that, v= this[i], i, this))
other.push(v);
return other;
};
}
if (!('every' in Array.prototype)) {
Array.prototype.every= function(tester, that /*opt*/) {
for (var i= 0, n= this.length; i<n; i++)
if (i in this && !tester.call(that, this[i], i, this))
return false;
return true;
};
}
if (!('some' in Array.prototype)) {
Array.prototype.some= function(tester, that /*opt*/) {
for (var i= 0, n= this.length; i<n; i++)
if (i in this && tester.call(that, this[i], i, this))
return true;
return false;
};
}
วิธี ECMA262-5 อื่น ๆ ที่ไม่ได้นำมาใช้ในที่นี้รวมถึง Array reduce
/ reduceRight
, JSON และObject
วิธีการใหม่บางอย่างที่สามารถใช้งานได้อย่างน่าเชื่อถือในฐานะฟังก์ชัน JS