/
githubmirror
/
babel
Обзор
Документация
Войти
/
githubmirror
/
babel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/babel-plugin-transform-jscript/test/fixtures/jscript/arrow-function/exec.js
9 строк
155 B
Deven Bansod
Migrate -computed-properties and -jscript tests to use jest expect assertions
13 апр 2018, 14:00
13 апр 2018, 14:00
a084339
Код
Авторство
О чём код?
class MyClass { test() { const that = this; const func = () => this === that; return func(); } } expect(new MyClass().test()).toBe(true);