6 lines
120 B
JavaScript
Raw Normal View History

2022-04-29 09:04:24 +02:00
'use strict';
const hasFindMethod = (handler) => handler.split('.').pop() === 'find';
module.exports = hasFindMethod;