Blame view

node_modules/is-callable/CHANGELOG.md 1.96 KB
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  1.1.4 / 2018-07-02
  =================
    * [Fix] improve `class` and arrow function detection (#30, #31)
    * [Tests] on all latest node minors; improve matrix
    * [Dev Deps] update all dev deps
  
  1.1.3 / 2016-02-27
  =================
    * [Fix] ensure “class “ doesn’t screw up “class” detection
    * [Tests] up to `node` `v5.7`, `v4.3`
    * [Dev Deps] update to `eslint` v2, `@ljharb/eslint-config`, `jscs`
  
  1.1.2 / 2016-01-15
  =================
    * [Fix] Make sure comments don’t screw up “class” detection (#4)
    * [Tests] up to `node` `v5.3`
    * [Tests] Add `parallelshell`, run both `--es-staging` and stock tests at once
    * [Dev Deps] update `tape`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`
    * [Refactor] convert `isNonES6ClassFn` into `isES6ClassFn`
  
  1.1.1 / 2015-11-30
  =================
    * [Fix] do not throw when a non-function has a function in its [[Prototype]] (#2)
    * [Dev Deps] update `tape`, `eslint`, `@ljharb/eslint-config`, `jscs`, `nsp`, `semver`
    * [Tests] up to `node` `v5.1`
    * [Tests] no longer allow node 0.8 to fail.
    * [Tests] fix npm upgrades in older nodes
  
  1.1.0 / 2015-10-02
  =================
    * [Fix] Some browsers report TypedArray constructors as `typeof object`
    * [New] return false for "class" constructors, when possible.
    * [Tests] up to `io.js` `v3.3`, `node` `v4.1`
    * [Dev Deps] update `eslint`, `editorconfig-tools`, `nsp`, `tape`, `semver`, `jscs`, `covert`, `make-arrow-function`
    * [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG
  
  1.0.4 / 2015-01-30
  =================
    * If @@toStringTag is not present, use the old-school Object#toString test.
  
  1.0.3 / 2015-01-29
  =================
    * Add tests to ensure arrow functions are callable.
    * Refactor to aid optimization of non-try/catch code.
  
  1.0.2 / 2015-01-29
  =================
    * Fix broken package.json
  
  1.0.1 / 2015-01-29
  =================
    * Add early exit for typeof not "function"
  
  1.0.0 / 2015-01-29
  =================
    * Initial release.