wallet-core/node_modules/auto-bind/index.js

53 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
'use strict';
2018-09-20 02:56:13 +02:00
module.exports = (self, options) => {
options = Object.assign({}, options);
const filter = key => {
const match = pattern => typeof pattern === 'string' ? key === pattern : pattern.test(key);
if (options.include) {
return options.include.some(match);
}
if (options.exclude) {
return !options.exclude.some(match);
}
return true;
};
2017-05-28 00:38:50 +02:00
for (const key of Object.getOwnPropertyNames(self.constructor.prototype)) {
const val = self[key];
2018-09-20 02:56:13 +02:00
if (key !== 'constructor' && typeof val === 'function' && filter(key)) {
2017-05-28 00:38:50 +02:00
self[key] = val.bind(self);
}
}
return self;
};
2018-09-20 02:56:13 +02:00
const excludedReactMethods = [
'componentWillMount',
'UNSAFE_componentWillMount',
'render',
'getSnapshotBeforeUpdate',
'componentDidMount',
'componentWillReceiveProps',
'UNSAFE_componentWillReceiveProps',
'shouldComponentUpdate',
'componentWillUpdate',
'UNSAFE_componentWillUpdate',
'componentDidUpdate',
'componentWillUnmount',
'componentDidCatch',
'setState',
'forceUpdate'
];
module.exports.react = (self, options) => {
options = Object.assign({}, options);
options.exclude = (options.exclude || []).concat(excludedReactMethods);
return module.exports(self, options);
};