AlkantarClanX12

Your IP : 3.143.214.226


Current Path : /lib/node_modules/npm/node_modules/is-obj/
Upload File :
Current File : //lib/node_modules/npm/node_modules/is-obj/index.js

'use strict';
module.exports = function (x) {
	var type = typeof x;
	return x !== null && (type === 'object' || type === 'function');
};