(ma)
| 748 | function isAmplitude(ma) { return typeof ma === "number" && !isNaN(ma) ? 0 <= ma && ma <= 1 : false }; |
| 749 | function isObject(mo) { return mo != null && typeof mo === "object" || typeof mo === "function" }; |
| 750 | function isArray(ma) { return ma != null && typeof ma === "object" && ma.constructor === Array }; |
| 751 | function isString(ms) { return typeof ms === "string" ? ms.length > 0 : false }; |
| 752 | function isSupportedFont(ff) { return isObject(FONTS[ff]) }; |
| 753 | function isSupportedAnchor(a) { return a === "left" || a === "right" || a === "center" }; |
no outgoing calls
no test coverage detected