UNPKG

can-util

Version:

Common utilities for CanJS projects

6 lines (5 loc) 162 B
'use strict'; // Returns `true` if the object can have properties (no `null`s). module.exports = function (current) { return /^f|^o/.test(typeof current); };