1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-21 11:11:22 -04:00
shimapan/app/util/verifyScope.js

4 lines
114 B
JavaScript
Raw Normal View History

2018-07-28 12:19:38 -04:00
const verifyScope = (scope, requiredScope) => scope.indexOf(requiredScope) !== -1;
module.exports = verifyScope;