UNPKG

@writ/utils

Version:
11 lines (10 loc) 198 B
'use strict'; /** * 无数据请求 * @param {string} method * @private */ function isNobodyRequest(method) { return /^(get|head)$/i.test(method); } module.exports = isNobodyRequest;