Skip to content

Commit

Permalink
Merge pull request #12 from kirovilya/master
Browse files Browse the repository at this point in the history
NodeJS 4.* support
  • Loading branch information
Koenkk authored Jun 10, 2018
2 parents 6ff1226 + 0e865a8 commit 6e84049
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions converters/fromZigbee.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const debounce = require('debounce');

const clickLookup = {
Expand Down
2 changes: 2 additions & 0 deletions converters/toZigbee.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const converters = {
onoff: {
key: 'state',
Expand Down
2 changes: 2 additions & 0 deletions devices.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const fz = require('./converters/fromZigbee');
const tz = require('./converters/toZigbee');

Expand Down
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const devices = require('./devices');

module.exports = {
Expand Down
2 changes: 2 additions & 0 deletions test/verify.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

const devices = require('../devices');
const assert = require('assert');

Expand Down

0 comments on commit 6e84049

Please sign in to comment.