Skip to content

Commit de6471c

Browse files
committed
chore(fileop) drop legacy support
1 parent ed94395 commit de6471c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.browserslistrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
last 2 Chrome versions
2+
last 2 Safari versions
3+
Firefox ESR
4+
maintained node versions
5+
not dead

client/fileop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const Emitify = require('emitify/legacy');
3+
const Emitify = require('emitify');
44
const getHost = require('./get-host');
55
const loadSocket = require('./load-socket');
66
const operator = require('./operator');

client/operator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const Emitify = require('emitify/legacy');
3+
const Emitify = require('emitify');
44

55
module.exports = (id, socket) => {
66
return new FileOperator(id, socket);

0 commit comments

Comments
 (0)