https://github.com/mishoo/UglifyJS
Revision 7b13159cda54b6e2dc5faef02c87ae87daa59237 authored by Alex Lam S.L on 27 May 2017, 09:44:59 UTC, committed by GitHub on 27 May 2017, 09:44:59 UTC
Technically not part of ES5, but commonly used code exists in the wild.
1 parent 95094b9
Raw File
Tip revision: 7b13159cda54b6e2dc5faef02c87ae87daa59237 authored by Alex Lam S.L on 27 May 2017, 09:44:59 UTC
fix `hoist_funs` on block-scoped `function` under "use strict" (#2013)
Tip revision: 7b13159
appveyor.yml
environment:
  matrix:
  - nodejs_version: "0.10"
  - nodejs_version: "0.12"
  - nodejs_version: "4.0"
  - nodejs_version: "6.0"

matrix:
  fast_finish: true

platform:
  - x86
  - x64

install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install

test_script:
  - node --version
  - npm --version
  - npm test

build: off
back to top