Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
boizz committed May 9, 2017
1 parent 21c01c7 commit e66ca60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module.exports = function realType(obj) {
var class2type = {}
'Boolean Number String Function Array Date RegExp Object Error'.split(' ').map((e, i) => {
'Boolean Number String Function Array Date RegExp Object Error'.split(' ').map((e) => {
class2type[`[object ${e}]`] = e.toLowerCase()
})
if ( obj == null ) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "realtype",
"version": "1.1.0",
"version": "1.1.1",
"description": "Can be used to distinguish between these types: boolean, number, string, function, array, date, regexp, object, error.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e66ca60

Please sign in to comment.