abso
Version:
16 lines (10 loc) • 342 B
JavaScript
/**
* @license Copyright (c) 2015-present, Absolvent.pl
* For licensing, see LICENSE
*/
/* eslint-disable max-len */
;
function isQueryStringRequired(method) {
return !method || typeof method === 'string' && (method.toLowerCase() === 'get' || method.toLowerCase() === 'head');
}
module.exports = isQueryStringRequired;