Files
30-seconds-of-code/test/isObject/isObject.js

2 lines
70 B
JavaScript

const isObject = obj => obj === Object(obj);
module.exports = isObject