From 66c20995c35a80c0bbcc7813271436573fbc5725 Mon Sep 17 00:00:00 2001 From: Xiaoji Chen Date: Sat, 24 Aug 2024 11:12:10 -0700 Subject: [PATCH] License headers --- src/event-manager.ts | 4 ++++ src/index.ts | 4 ++++ src/inputs/contextmenu-input.ts | 4 ++++ src/inputs/input.ts | 4 ++++ src/inputs/key-input.ts | 4 ++++ src/inputs/move-input.ts | 4 ++++ src/inputs/wheel-input.ts | 4 ++++ src/types.ts | 4 ++++ src/utils/event-registrar.ts | 4 ++++ src/utils/event-utils.ts | 4 ++++ src/utils/globals.ts | 4 ++++ test/browser.ts | 4 ++++ test/event-manager.spec.ts | 22 +++------------------- test/index.ts | 4 ++++ test/inputs/index.ts | 22 +++------------------- test/inputs/key-input.spec.ts | 22 +++------------------- test/inputs/move-input.spec.ts | 22 +++------------------- test/inputs/wheel-input.spec.ts | 22 +++------------------- test/node.ts | 22 +++------------------- test/size.js | 4 ++++ test/test-utils/dom.ts | 4 ++++ test/test-utils/spy.ts | 22 +++------------------- test/utils/event-registrar.spec.ts | 22 +++------------------- test/utils/event-utils.spec.ts | 22 +++------------------- test/utils/global.spec.ts | 22 +++------------------- test/utils/index.ts | 4 ++++ 26 files changed, 94 insertions(+), 190 deletions(-) diff --git a/src/event-manager.ts b/src/event-manager.ts index 52bbfef..b2de2be 100644 --- a/src/event-manager.ts +++ b/src/event-manager.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import {Manager as HammerManager, RecognizerTuple} from './hammerjs'; import type { MjolnirEventRaw, diff --git a/src/index.ts b/src/index.ts index 4f901f9..94e1c99 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + export {EventManager} from './event-manager'; export { Recognizer, diff --git a/src/inputs/contextmenu-input.ts b/src/inputs/contextmenu-input.ts index 2195345..379aa7c 100644 --- a/src/inputs/contextmenu-input.ts +++ b/src/inputs/contextmenu-input.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {MjolnirPointerEventRaw} from '../types'; import {Input, InputOptions} from './input'; diff --git a/src/inputs/input.ts b/src/inputs/input.ts index 4bda848..24f2953 100644 --- a/src/inputs/input.ts +++ b/src/inputs/input.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {MjolnirEventRaw} from '../types'; export interface InputOptions { diff --git a/src/inputs/key-input.ts b/src/inputs/key-input.ts index 671d8de..b7a2f4b 100644 --- a/src/inputs/key-input.ts +++ b/src/inputs/key-input.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {MjolnirKeyEventRaw} from '../types'; import {Input, InputOptions} from './input'; diff --git a/src/inputs/move-input.ts b/src/inputs/move-input.ts index fca6da1..b33582a 100644 --- a/src/inputs/move-input.ts +++ b/src/inputs/move-input.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {MjolnirPointerEventRaw} from '../types'; import {Input, InputOptions} from './input'; diff --git a/src/inputs/wheel-input.ts b/src/inputs/wheel-input.ts index 800307e..91f5709 100644 --- a/src/inputs/wheel-input.ts +++ b/src/inputs/wheel-input.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {MjolnirWheelEventRaw} from '../types'; import {Input, InputOptions} from './input'; diff --git a/src/types.ts b/src/types.ts index e1f1964..4888052 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {HammerEvent} from './hammerjs'; export type Point = { diff --git a/src/utils/event-registrar.ts b/src/utils/event-registrar.ts index 96205d7..aa5ce82 100644 --- a/src/utils/event-registrar.ts +++ b/src/utils/event-registrar.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {EventManager} from '../event-manager'; import {whichButtons, getOffsetPosition} from './event-utils'; import type { diff --git a/src/utils/event-utils.ts b/src/utils/event-utils.ts index 983bb2a..8775e02 100644 --- a/src/utils/event-utils.ts +++ b/src/utils/event-utils.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import type {MjolnirEventRaw, Point} from '../types'; import type {HammerEvent} from '../hammerjs'; diff --git a/src/utils/globals.ts b/src/utils/globals.ts index e147158..e95a51b 100644 --- a/src/utils/globals.ts +++ b/src/utils/globals.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + // Purpose: include this in your module to avoids adding dependencies on // micro modules like 'global' diff --git a/test/browser.ts b/test/browser.ts index 6e27800..8a5791e 100644 --- a/test/browser.ts +++ b/test/browser.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + /* global window */ import test from 'tape'; import {_enableDOMLogging as enableDOMLogging} from '@probe.gl/test-utils'; diff --git a/test/event-manager.spec.ts b/test/event-manager.spec.ts index bcd5bb5..91c7466 100644 --- a/test/event-manager.spec.ts +++ b/test/event-manager.spec.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {EventManager, Tap, Pan} from 'mjolnir.js'; diff --git a/test/index.ts b/test/index.ts index 6435f43..3250956 100644 --- a/test/index.ts +++ b/test/index.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import './event-manager.spec'; import './inputs'; import './utils'; diff --git a/test/inputs/index.ts b/test/inputs/index.ts index e9fbf40..dbe4808 100644 --- a/test/inputs/index.ts +++ b/test/inputs/index.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import './key-input.spec'; import './move-input.spec'; diff --git a/test/inputs/key-input.spec.ts b/test/inputs/key-input.spec.ts index b9c175f..dab871c 100644 --- a/test/inputs/key-input.spec.ts +++ b/test/inputs/key-input.spec.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {KeyInput} from 'mjolnir.js/inputs/key-input'; diff --git a/test/inputs/move-input.spec.ts b/test/inputs/move-input.spec.ts index a83526e..203c6fa 100644 --- a/test/inputs/move-input.spec.ts +++ b/test/inputs/move-input.spec.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {MoveInput} from 'mjolnir.js/inputs/move-input'; diff --git a/test/inputs/wheel-input.spec.ts b/test/inputs/wheel-input.spec.ts index 891ccaf..c7f4ff3 100644 --- a/test/inputs/wheel-input.spec.ts +++ b/test/inputs/wheel-input.spec.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {WheelInput} from 'mjolnir.js/inputs/wheel-input'; diff --git a/test/node.ts b/test/node.ts index 1534a0e..ee78e33 100644 --- a/test/node.ts +++ b/test/node.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import {JSDOM} from 'jsdom'; diff --git a/test/size.js b/test/size.js index bf11825..b84942a 100644 --- a/test/size.js +++ b/test/size.js @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import {EventManager} from 'mjolnir.js'; console.log(EventManager); // eslint-disable-line diff --git a/test/test-utils/dom.ts b/test/test-utils/dom.ts index 9ddc609..a4b7bcf 100644 --- a/test/test-utils/dom.ts +++ b/test/test-utils/dom.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + type ElementOptions = { id?: string; children?: ElementOptions[]; diff --git a/test/test-utils/spy.ts b/test/test-utils/spy.ts index 89da954..565a0b2 100644 --- a/test/test-utils/spy.ts +++ b/test/test-utils/spy.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors export type SpyFunction = Function & { callCount: number; diff --git a/test/utils/event-registrar.spec.ts b/test/utils/event-registrar.spec.ts index e8fcd89..b9ec069 100644 --- a/test/utils/event-registrar.spec.ts +++ b/test/utils/event-registrar.spec.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {EventRegistrar} from 'mjolnir.js/utils/event-registrar'; diff --git a/test/utils/event-utils.spec.ts b/test/utils/event-utils.spec.ts index d6fa0fa..d280135 100644 --- a/test/utils/event-utils.spec.ts +++ b/test/utils/event-utils.spec.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {whichButtons} from 'mjolnir.js/utils/event-utils'; diff --git a/test/utils/global.spec.ts b/test/utils/global.spec.ts index 63f90c6..d8f7911 100644 --- a/test/utils/global.spec.ts +++ b/test/utils/global.spec.ts @@ -1,22 +1,6 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors import test from 'tape-promise/tape'; import {global, window, document, userAgent} from 'mjolnir.js/utils/globals'; diff --git a/test/utils/index.ts b/test/utils/index.ts index 5ba298d..d65ef2a 100644 --- a/test/utils/index.ts +++ b/test/utils/index.ts @@ -1,3 +1,7 @@ +// mjolnir.js +// SPDX-License-Identifier: MIT +// Copyright (c) vis.gl contributors + import './event-registrar.spec'; import './event-utils.spec'; import './global.spec';