Lines Matching refs:obj
49 clear(obj) {
50 if (!obj) {
53 if (typeof (obj) !== 'object' && typeof (obj) !== 'function') {
58 obj[key] = value;
62 ignoreMock(obj, method) {
63 if (typeof (obj) !== 'object' && typeof (obj) !== 'function') {
71 obj[method.propName] = og;
129 findName(obj, value) {
130 let properties = this.findProperties(obj);
133 if (obj[va1] === value) {
145 findProperties(obj, ...arg) {
153 return getProperty(obj);