.isboolean - macmcmeans/localDataStorage GitHub Wiki
localDataStorage.isboolean( keyName )
This method checks the data type of the value stored under keyName to determine if it's a Boolean and returns true or false.
EXAMPLE:
● localData.set( 'key3', false ) ● localData.isboolean( 'key3' ) --> true
🏿 The corresponding Memory Key method is _isboolean.