Files
codeql/javascript/ql/test/library-tests/StringOps/EndsWith/tst.js
2019-01-18 10:40:48 +00:00

9 lines
160 B
JavaScript

import * as _ from 'underscore';
import * as R from 'ramda';
function test() {
if (A.endsWith(B)) {}
if (_.endsWith(A, B)) {}
if (R.endsWith(A, B)) {}
}