@zipbul/result 0.1.5 β†’ 0.1.6

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.
Files changed (3) hide show
  1. package/README.ko.md +0 -17
  2. package/README.md +0 -17
  3. package/package.json +1 -1
package/README.ko.md CHANGED
@@ -428,23 +428,6 @@ Bun.serve({
428
428
 
429
429
  <br>
430
430
 
431
- ## πŸ“€ 내보내기
432
-
433
- ```typescript
434
- // 핡심
435
- export { err } from '@zipbul/result';
436
- export { isErr } from '@zipbul/result';
437
- export { safe } from '@zipbul/result';
438
-
439
- // νƒ€μž…
440
- export type { Result, ResultAsync, Err } from '@zipbul/result';
441
-
442
- // 마컀 ν‚€
443
- export { DEFAULT_MARKER_KEY, getMarkerKey, setMarkerKey } from '@zipbul/result';
444
- ```
445
-
446
- <br>
447
-
448
431
  ## πŸ“„ λΌμ΄μ„ μŠ€
449
432
 
450
433
  MIT
package/README.md CHANGED
@@ -428,23 +428,6 @@ Bun.serve({
428
428
 
429
429
  <br>
430
430
 
431
- ## πŸ“€ Exports
432
-
433
- ```typescript
434
- // Core
435
- export { err } from '@zipbul/result';
436
- export { isErr } from '@zipbul/result';
437
- export { safe } from '@zipbul/result';
438
-
439
- // Types
440
- export type { Result, ResultAsync, Err } from '@zipbul/result';
441
-
442
- // Marker key
443
- export { DEFAULT_MARKER_KEY, getMarkerKey, setMarkerKey } from '@zipbul/result';
444
- ```
445
-
446
- <br>
447
-
448
431
  ## πŸ“„ License
449
432
 
450
433
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zipbul/result",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Lightweight Result type for error handling without exceptions",
5
5
  "license": "MIT",
6
6
  "author": "Junhyung Park (https://github.com/parkrevil)",