mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
Use text-encoding library for text encoder
This commit is contained in:
parent
f12d825a5e
commit
2c1412dda4
2 changed files with 2 additions and 0 deletions
|
@ -59,6 +59,7 @@
|
|||
"socket.io-client": "2.0.4",
|
||||
"stats.js": "^0.17.0",
|
||||
"tap": "^10.2.0",
|
||||
"text-encoding": "0.6.4",
|
||||
"tiny-worker": "^2.1.1",
|
||||
"webpack": "^3.10.0",
|
||||
"webpack-dev-server": "^2.4.1",
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import {TextEncoder} from 'text-encoding';
|
||||
const EventEmitter = require('events');
|
||||
|
||||
const centralDispatch = require('./dispatch/central-dispatch');
|
||||
|
|
Loading…
Reference in a new issue