/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/first-mate-helpers.js
11 строк
263 B
Rafael Oleza
Reformat all JS files using prettier
31 май 2019, 19:33
31 май 2019, 19:33
7f3f040
Код
Авторство
О чём код?
module.exports = { fromFirstMateScopeId(firstMateScopeId) { let atomScopeId = -firstMateScopeId; if ((atomScopeId & 1) === 0) atomScopeId--; return atomScopeId + 256; }, toFirstMateScopeId(atomScopeId) { return -(atomScopeId - 256); } };