agenda/node_modules/clone-deep/package.json
Edward Betts ea4980a5d7 Fix European trip return heuristic for weekend location tracking
Adjust European short trip heuristic from >3 days to >1 day to correctly
detect when user has returned home from European trips. This fixes the
April 29-30, 2023 case where the location incorrectly showed "Sankt Georg, Hamburg"
instead of "Bristol" when the user was free (no events scheduled) after
the foss-north trip ended on April 27.

The previous logic required more than 3 days to pass before assuming
return home from European countries, but for short European trips by
rail/ferry, users typically return within 1-2 days.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-16 06:38:37 +02:00

82 lines
1.5 KiB
JSON

{
"name": "clone-deep",
"description": "Recursively (deep) clone JavaScript native types, like Object, Array, RegExp, Date as well as primitives.",
"version": "4.0.1",
"homepage": "https://github.com/jonschlinkert/clone-deep",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": "jonschlinkert/clone-deep",
"bugs": {
"url": "https://github.com/jonschlinkert/clone-deep/issues"
},
"license": "MIT",
"files": [
"index.js"
],
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"is-plain-object": "^2.0.4",
"kind-of": "^6.0.2",
"shallow-clone": "^3.0.0"
},
"devDependencies": {
"gulp-format-md": "^2.0.0",
"mocha": "^5.2.0"
},
"keywords": [
"array",
"assign",
"buffer",
"clamped",
"clone",
"clone-array",
"clone-array-deep",
"clone-buffer",
"clone-date",
"clone-deep",
"clone-map",
"clone-object",
"clone-object-deep",
"clone-reg-exp",
"clone-regex",
"clone-regexp",
"clone-set",
"date",
"deep",
"extend",
"mixin",
"mixin-object",
"object",
"regex",
"regexp",
"shallow",
"symbol"
],
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"is-plain-object",
"isobject",
"kind-of",
"shallow-clone"
]
},
"lint": {
"reflinks": true
}
}
}