mirror of
https://github.com/github/codeql.git
synced 2026-04-11 01:54:00 +02:00
6 lines
173 B
JavaScript
6 lines
173 B
JavaScript
import { async } from '@strapi/utils';
|
|
|
|
const f = async () => {
|
|
const permissionsInDB = await async.pipe(strapi.db.query('x').findMany,map('y'))(); // $SPURIOUS:Alert
|
|
}
|