Skip to content

Commit 9455462

Browse files
committed
debug 제거
1 parent 0ffbc36 commit 9455462

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [1.0.1] - 2019.07.03
8+
### Changed
9+
- jsdoc
10+
- husky, node v8.9.4
11+
### Bug-fix
12+
- remove `debug`
13+
14+
715
## [1.0.0] - 2019.06.21
8-
###
16+
`is`
17+
### Changed
18+
- isEmpty -> is

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "is-0",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

src/empty.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
const debug = require('debug')('empty')
1+
// const debug = require('debug')('empty')
2+
23
/**
34
* @module is
45
* @author sanghak,Lee <[email protected]>
@@ -21,11 +22,11 @@ const debug = require('debug')('empty')
2122
* is.empty(1) // false
2223
*/
2324
const empty = (value) => {
24-
debug('value', value)
25-
debug('typeof value', typeof value)
26-
debug('Object.keys(value).length', value && Object.keys(value).length)
27-
debug('Object.getOwnPropertyNames()', value && Object.getOwnPropertyNames(value))
28-
debug('value.constructor.name', value && value.constructor && value.constructor.name)
25+
// debug('value', value)
26+
// debug('typeof value', typeof value)
27+
// debug('Object.keys(value).length', value && Object.keys(value).length)
28+
// debug('Object.getOwnPropertyNames()', value && Object.getOwnPropertyNames(value))
29+
// debug('value.constructor.name', value && value.constructor && value.constructor.name)
2930

3031
if (value === null) return true
3132
if (typeof value === 'undefined') return true
@@ -35,7 +36,7 @@ const empty = (value) => {
3536

3637
if (typeof value === 'object' && value.constructor.name === 'String' && Object.keys(value).length < 1) return true // new String()
3738

38-
debug('isEmpty false')
39+
// debug('isEmpty false')
3940
return false
4041
}
4142

0 commit comments

Comments
 (0)