continuation icon indicating copy to clipboard operation
continuation copied to clipboard

Move 'use strict' above

Open BYVoid opened this issue 11 years ago • 0 comments

function test() {
    'use strict';
    f(obtain());
}

Actual

function test() {
  var _$err;
  'use strict';
  f(function () {
    _$err = arguments[0];
    if (_$err)
      throw _$err;
  });
}

BYVoid avatar Jun 09 '13 08:06 BYVoid