format: prettify entire project
This commit is contained in:
18
node_modules/setprototypeof/index.js
generated
vendored
18
node_modules/setprototypeof/index.js
generated
vendored
@ -1,17 +1,19 @@
|
||||
'use strict'
|
||||
'use strict';
|
||||
/* eslint no-proto: 0 */
|
||||
module.exports = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties)
|
||||
module.exports =
|
||||
Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array ? setProtoOf : mixinProperties);
|
||||
|
||||
function setProtoOf (obj, proto) {
|
||||
obj.__proto__ = proto
|
||||
return obj
|
||||
function setProtoOf(obj, proto) {
|
||||
obj.__proto__ = proto;
|
||||
return obj;
|
||||
}
|
||||
|
||||
function mixinProperties (obj, proto) {
|
||||
function mixinProperties(obj, proto) {
|
||||
for (var prop in proto) {
|
||||
if (!Object.prototype.hasOwnProperty.call(obj, prop)) {
|
||||
obj[prop] = proto[prop]
|
||||
obj[prop] = proto[prop];
|
||||
}
|
||||
}
|
||||
return obj
|
||||
return obj;
|
||||
}
|
||||
|
Reference in New Issue
Block a user