slid-phi 2.2.3 → 2.2.4
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.
- package/LICENSE +1 -1
- package/README.md +4 -16
- package/package.json +2 -2
- package/src/index.mjs +4 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# slid-phi (public stub)
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
<p align="center">
|
|
4
5
|
<img src="./brand/slid-phi-labs-master.jpg" alt="Zero Range Wave · Slid Phi Labs" width="720"/>
|
|
5
6
|
</p>
|
|
@@ -8,25 +9,12 @@
|
|
|
8
9
|
|
|
9
10
|
<p align="center"><img src="https://raw.githubusercontent.com/ceedot-rock/splabs-brand/main/assets/brand/logos/logo-slid-phi.jpg" alt="product logo" width="280"/></p>
|
|
10
11
|
|
|
11
|
-
**Proprietary.** Public npm does **not** include codec source.
|
|
12
12
|
|
|
13
|
-
**
|
|
13
|
+
**Proprietary.** Public npm does **not** include codec source.
|
|
14
14
|
|
|
15
15
|
## Get the real package
|
|
16
16
|
|
|
17
|
-
1.
|
|
18
|
-
2. Access — private install or download
|
|
19
|
-
|
|
20
|
-
| Offer | Price | Link |
|
|
21
|
-
|-------|------:|------|
|
|
22
|
-
| **Support + Integration** | **$199** | [Buy](https://buy.stripe.com/7sYbJ27NjfJSbhz8gw6wE09) |
|
|
23
|
-
| Sponsor | $29 | [Sponsor](https://buy.stripe.com/cNi6oI8RnbtCgBTgN26wE01) |
|
|
24
|
-
| Consulting (deeper) | $250 | [Book](https://buy.stripe.com/eVqfZi0kR41a4TbgN26wE02) |
|
|
25
|
-
|
|
26
|
-
Contact: [corey@slidphilabs.com](mailto:corey@slidphilabs.com)
|
|
27
|
-
|
|
28
|
-
Repo: [github.com/ceedot-rock/SlidPhiLabs](https://github.com/ceedot-rock/SlidPhiLabs)
|
|
29
|
-
|
|
30
|
-
npm: [`slid-phi`](https://www.npmjs.com/package/slid-phi)
|
|
17
|
+
1. [Try Gate](https://www.slidphilabs.com/try) or purchase support/license
|
|
18
|
+
2. [Access](https://www.slidphilabs.com/access) — private install or download
|
|
31
19
|
|
|
32
20
|
© Slid Phi Labs · All rights reserved
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slid-phi",
|
|
3
|
-
"version": "2.2.
|
|
4
|
-
"description": "Slid Phi Labs Omni-Dormant integer codecs
|
|
3
|
+
"version": "2.2.4",
|
|
4
|
+
"description": "Slid Phi Labs Omni-Dormant integer codecs \u2014 Zeckendorf / hybrid Fibonacci + optional gap-ANS path. Pure JS. Support and integration available.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.mjs",
|
|
7
7
|
"exports": {
|
package/src/index.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/** Proprietary stub — no codec on public npm. https://slidphilabs.
|
|
1
|
+
/** Proprietary stub — no codec on public npm. https://www.slidphilabs.com/access */
|
|
2
2
|
const MSG =
|
|
3
3
|
"slid-phi is proprietary (SlidPhiLabs). " +
|
|
4
4
|
"Public npm only ships a stub. After purchase or Try Gate, you receive the real package. " +
|
|
5
|
-
"https://slidphilabs.
|
|
5
|
+
"https://www.slidphilabs.com/access";
|
|
6
6
|
function blocked() { throw new Error(MSG); }
|
|
7
7
|
export const encode = blocked;
|
|
8
8
|
export const decode = blocked;
|
|
9
9
|
export const encodeHybrid = blocked;
|
|
10
10
|
export const decodeHybrid = blocked;
|
|
11
|
-
export const OMNI_META = { stub: true, access: "https://slidphilabs.
|
|
11
|
+
export const OMNI_META = { stub: true, access: "https://www.slidphilabs.com/access" };
|
|
12
12
|
export default { encode, decode, encodeHybrid, decodeHybrid, OMNI_META };
|
|
13
|
-
console.warn("[SlidPhiLabs] Stub — no codec source. → https://slidphilabs.
|
|
13
|
+
console.warn("[SlidPhiLabs] Stub — no codec source. → https://www.slidphilabs.com/access");
|