mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
import { isOnFunction } from './helpers.js';
|
|
/**
|
|
* @name isClass
|
|
* Tests if the supplied argument is a Class
|
|
*/
|
|
export const isClass = /*#__PURE__*/ isOnFunction('isPrototypeOf', 'hasOwnProperty');
|