Lines Matching refs:obj
60 clear(obj) {
61 if (!obj) {
64 if (typeof (obj) !== 'object' && typeof (obj) !== 'function') {
69 obj[key] = value;
74 ignoreMock(obj, method) {
75 if (typeof (obj) !== 'object' && typeof (obj) !== 'function') {
83 obj[method.propName] = og;
147 findName(obj, value) {
148 let properties = this.findProperties(obj);
152 if (obj[va1] === value) {
167 findProperties(obj, ...arg) {
175 return getProperty(obj);