An error occurred while loading the file. Please try again.
-
Mele authored
Added funktion for cookies, Fixed path in app/urls.py added something to settings.py imported inMount updated package-lock.json and package.json
a9d58172
/**
* The base implementation of `_.isNaN` without support for number objects.
*
* @private
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.
*/
function baseIsNaN(value) {
return value !== value;
}
module.exports = baseIsNaN;