README
simpletypes
7 functions are exported to check for simple JS types
isANumber(3)
isAString('yo')
isAnArray([7, 8, 9])
isAnObject({name: 'foolan', isCool: false})
isAFunction(x => x)
isABoolean(true)
isUndefined(undefined)
simple type checks for js
<script type="module">
import coetrySimpletypes from 'https://cdn.skypack.dev/@coetry/simpletypes';
</script>
7 functions are exported to check for simple JS types
isANumber(3)
isAString('yo')
isAnArray([7, 8, 9])
isAnObject({name: 'foolan', isCool: false})
isAFunction(x => x)
isABoolean(true)
isUndefined(undefined)