@rivascva/dt-idl 1.1.61 → 1.1.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ package maps
2
+
3
+ // Returns the keys of the given map as a slice.
4
+ func Keys[K ~string, V any](m map[K]V) []K {
5
+ keys := make([]K, 0, len(m))
6
+ for k := range m {
7
+ keys = append(keys, k)
8
+ }
9
+ return keys
10
+ }
package/go.mod CHANGED
@@ -1,3 +1,3 @@
1
1
  module github.com/RivasCVA/dt-idl
2
2
 
3
- go 1.22
3
+ go 1.23
package/mise.toml CHANGED
@@ -1,5 +1,5 @@
1
1
  [tools]
2
- go = "1.22"
2
+ go = "1.23"
3
3
  node = "22"
4
4
  pre-commit = "4.0"
5
5
  golangci-lint = "2.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.61",
3
+ "version": "1.1.63",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",