immutable
Here are 754 public repositories matching this topic...
Forking ipfs/js-ipfs#3252 (comment) into separate issue.
Looks like some of our API calls return values that refer to same ArrayBuffer, which in turn causes one of the encoder functions https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-message-port-protocol/src to add it to the transfer list twice and error on postMessage.
-
Updated
Jul 15, 2020 - JavaScript
-
Updated
Mar 14, 2021 - JavaScript
Currently there is no possibility to set up a custom rounding function. Therefore you are limited to the ones that are implemented by default. For my case I need a rounding function that always rounds up (e.g. 0.002 => 0.01 with precision 2, commercial rounding)
It would be nice to pass a callback or a string that describes the rounding mode. If it is a string and the string matches the suppo
-
Updated
Oct 11, 2019 - JavaScript
-
Updated
Mar 17, 2021 - Go
-
Updated
Feb 12, 2019 - JavaScript
-
Updated
Feb 25, 2021 - C++
-
Updated
Dec 10, 2020 - TypeScript
-
Updated
Sep 18, 2020 - JavaScript
Currently they wrap them into pvector which is not as efficient as it could be in Python 3.
-
Updated
Feb 25, 2021 - HTML
-
Updated
Mar 18, 2021 - Prolog
-
Updated
Dec 22, 2019 - JavaScript
-
Updated
Feb 11, 2021 - C
This was cut from the v0.2.0 release for present time constraints however making ipfs-http more accessible as "the" ipfs binary would make the project more accessible to anyone just wanting to try it out. At the moment I see the following obstacles:
http/README.mdhas no tutorial on how to try outipfs-httpipfs-httpsupports only `i
-
Updated
Mar 17, 2021 - Kotlin
dropRight operation
This operations will be used to drop elements in the steam on the right of the given element
var elements = []int{10,12,7,41,5,6}
res:=koazee.StreamOf(elements).DropRight(12).Out().Val()
fmt.Println(res)
// [10,12]
-
Updated
Jan 20, 2021 - Java
-
Updated
Mar 12, 2019 - Go
-
Updated
Mar 17, 2021 - PHP
-
Updated
Jan 18, 2021 - JavaScript
Improve this page
Add a description, image, and links to the immutable topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the immutable topic, visit your repo's landing page and select "manage topics."
When we have multiple iframes with the same origin, we can share objects between different iframe window. But immer produce has a check isPlainObject(), there is a condition "Object.getPrototype(xxx) === Object.prototype", which makes this scenario broken. Because the window.Object.prototype in different iframes have different instances. This condition will return false.
The basic repro example