1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Update assets/scripts/utils/is.js

Co-authored-by: Chauncey McAskill <chauncey@locomotive.ca>
This commit is contained in:
Arnaud Pinot
2022-10-05 16:36:20 -04:00
committed by GitHub
parent 9e5704238e
commit 2b30d9ac5c

View File

@@ -16,7 +16,7 @@ const isObject = x => (x && typeof x === 'object')
* @return {boolean} * @return {boolean}
*/ */
const isFunction = x => x instanceof Function const isFunction = x => typeof x === 'function'
export { export {