Jesus sucks
This commit is contained in:
21
backend/frontend/node_modules/@emotion/weak-memoize/LICENSE
generated
vendored
Normal file
21
backend/frontend/node_modules/@emotion/weak-memoize/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Emotion team and other contributors
|
||||
|
||||
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.
|
||||
35
backend/frontend/node_modules/@emotion/weak-memoize/README.md
generated
vendored
Normal file
35
backend/frontend/node_modules/@emotion/weak-memoize/README.md
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
# @emotion/weak-memoize
|
||||
|
||||
> A memoization function that uses a WeakMap
|
||||
|
||||
## Install
|
||||
|
||||
```bash
|
||||
yarn add @emotion/weak-memoize
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Because @emotion/weak-memoize uses a WeakMap the argument must be a non primitive type, e.g. objects, functions, arrays and etc. The function passed to `weakMemoize` must also only accept a single argument.
|
||||
|
||||
```jsx
|
||||
import weakMemoize from '@emotion/weak-memoize'
|
||||
|
||||
let doThing = weakMemoize(({ someProperty }) => {
|
||||
return { newName: someProperty }
|
||||
})
|
||||
|
||||
let obj = { someProperty: true }
|
||||
|
||||
let firstResult = doThing(obj)
|
||||
|
||||
let secondResult = doThing(obj)
|
||||
|
||||
firstResult === secondResult // true
|
||||
|
||||
let newObj = { someProperty: true }
|
||||
|
||||
let thirdResult = doThing(newObj)
|
||||
|
||||
thirdResult === firstResult // false
|
||||
```
|
||||
32
backend/frontend/node_modules/@emotion/weak-memoize/package.json
generated
vendored
Normal file
32
backend/frontend/node_modules/@emotion/weak-memoize/package.json
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "@emotion/weak-memoize",
|
||||
"version": "0.4.0",
|
||||
"description": "A memoization function that uses a WeakMap",
|
||||
"main": "dist/emotion-weak-memoize.cjs.js",
|
||||
"module": "dist/emotion-weak-memoize.esm.js",
|
||||
"types": "dist/emotion-weak-memoize.cjs.d.ts",
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/emotion-js/emotion/tree/main/packages/weak-memoize",
|
||||
"scripts": {
|
||||
"test:typescript": "dtslint types"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@definitelytyped/dtslint": "0.0.112",
|
||||
"typescript": "^5.4.5"
|
||||
},
|
||||
"files": [
|
||||
"src",
|
||||
"dist"
|
||||
],
|
||||
"exports": {
|
||||
".": {
|
||||
"module": "./dist/emotion-weak-memoize.esm.js",
|
||||
"import": "./dist/emotion-weak-memoize.cjs.mjs",
|
||||
"default": "./dist/emotion-weak-memoize.cjs.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
}
|
||||
}
|
||||
17
backend/frontend/node_modules/@emotion/weak-memoize/src/index.ts
generated
vendored
Normal file
17
backend/frontend/node_modules/@emotion/weak-memoize/src/index.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
let weakMemoize = function <Arg extends object, Return>(
|
||||
func: (arg: Arg) => Return
|
||||
): (arg: Arg) => Return {
|
||||
let cache = new WeakMap<Arg, Return>()
|
||||
return (arg: Arg) => {
|
||||
if (cache.has(arg)) {
|
||||
// Use non-null assertion because we just checked that the cache `has` it
|
||||
// This allows us to remove `undefined` from the return value
|
||||
return cache.get(arg)!
|
||||
}
|
||||
let ret = func(arg)
|
||||
cache.set(arg, ret)
|
||||
return ret
|
||||
}
|
||||
}
|
||||
|
||||
export default weakMemoize
|
||||
Reference in New Issue
Block a user