mana-syringe
Version:
IoC library for mana, easily to use.
8 lines (7 loc) • 643 B
JavaScript
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
export function isInversifyContext(data) {
return data && _typeof(data) === 'object' && 'container' in data && 'inversify' in data;
}
export function isInversifyRegister(data) {
return data && _typeof(data) === 'object' && 'bind' in data && 'unbind' in data && 'rebind' in data && 'isBound' in data;
}