1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-10-08 18:17:03 +02:00

emmet: remove octal string so that babel doesnt error on minification

This commit is contained in:
Kushagra Gour
2018-01-13 16:28:44 +05:30
parent 4cbef2bf9f
commit b7a38a555c

View File

@@ -39939,8 +39939,8 @@ define(function(require, exports, module) {
* @return {Object} Object with <code>width</code> and <code>height</code> properties
*/
getImageSize: function(stream) {
var pngMagicNum = "\211PNG\r\n\032\n",
jpgMagicNum = "\377\330",
var pngMagicNum = "",
jpgMagicNum = "",
gifMagicNum = "GIF8",
pos = 0,
nextByte = function() {