'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: []
};
}
}