An error occurred while loading the file. Please try again.
  • Mele's avatar
    things I did Today · a9d58172
    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
_baseIsNaN.js 296 bytes
/**
 * 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;