Bug 1209470 - Remove use of expression closure from Add-on SDK. r=mossop

This commit is contained in:
Tooru Fujisawa
2015-09-29 20:34:48 +09:00
parent c60f0640a4
commit ef7f96f74b
93 changed files with 658 additions and 409 deletions

View File

@@ -56,7 +56,9 @@ function extend(source) {
}
exports.extend = extend;
function has(obj, key) obj.hasOwnProperty(key);
function has(obj, key) {
return obj.hasOwnProperty(key);
}
exports.has = has;
function each(obj, fn) {