mirror of
https://github.com/github/codeql.git
synced 2026-03-22 23:49:43 +01:00
9 lines
160 B
JavaScript
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)) {}
|
|
}
|