UNPKG

abso

Version:

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