Bug 1209470 - Remove use of expression closure from Add-on SDK. r=mossop
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user