mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 14:16:01 +00:00
10 lines
289 B
JavaScript
10 lines
289 B
JavaScript
const getJslFileName = require('../utility/getJslFileName');
|
|
const jsonLinesReader = require('./jsonLinesReader');
|
|
|
|
function jslDataReader({ jslid, ...other }) {
|
|
const fileName = getJslFileName(jslid);
|
|
return jsonLinesReader({ fileName, ...other });
|
|
}
|
|
|
|
module.exports = jslDataReader;
|