UNPKG

phantasy-mysql

Version:
20 lines (18 loc) 279 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.limit = limit; function limit(props) { if (typeof props.limit === 'number') { return { sql: 'LIMIT ?', args: [props.limit] }; } else { return { sql: '', args: [] }; } }