Welcome to mirror list, hosted at ThFree Co, Russian Federation.

throwError.js « testLib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09936189fcfc601dc6606eaa9f39536cec5cb704 (plain)
1
2
3
4
5
6
7
// Using deliberately const here because we know that we're transform const to let
const a = "a";

module.exports = function () {
    // Ensure that column numbers are correct
    const b = "b"; throw new Error();
};