UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

11 lines (8 loc) 283 B
'use strict'; var getOwnKey = require('../../common/internal/getOwnKey'); function getDateParamKey(params, key) { return getOwnKey(params, key) || getOwnKey(params, key + 's') || (key === 'day' && getOwnKey(params, 'date')); } module.exports = getDateParamKey;