microbejs
Version:
microbe.js - A modular JS library for DOM manipulation, and more
23 lines (21 loc) • 550 B
JavaScript
/**
* types.js
*
* @author Mouse Braun <mouse@knoblau.ch>
* @author Nicolas Brugneaux <nicolas.brugneaux@gmail.com>
*
* @package Microbe
*/
/*jshint globalstrict: true*/
;
module.exports = {
'[object Number]' : 'number',
'[object String]' : 'string',
'[object Function]' : 'function',
'[object Array]' : 'array',
'[object Date]' : 'date',
'[object RegExp]' : 'regExp',
'[object Error]' : 'error',
'[object Promise]' : 'promise',
'[object Microbe]' : 'microbe'
};