mirror of
https://github.com/strapi/strapi.git
synced 2025-09-27 01:09:49 +00:00
8 lines
169 B
JavaScript
8 lines
169 B
JavaScript
const { Converter } = require('../converter');
|
|
|
|
test('1', () => {
|
|
const c = new Converter({}, { start: 0, where: { 'user.id': 1 } });
|
|
|
|
console.log(c.convert());
|
|
});
|