UNPKG

@t7/utils

Version:

Utility methods for T7 components.

11 lines (9 loc) 165 B
// Helper for checking existence. const exists = (x) => { return ( x !== null && typeof x !== 'undefined' ) } // Expose function. export default exists