Skip to content

Commit b072b09

Browse files
committed
until
1 parent 1493395 commit b072b09

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed
File renamed without changes.

src/guard/index.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*--------------------------------------------------------------------------
2+
3+
@sinclair/parsebox
4+
5+
The MIT License (MIT)
6+
7+
Copyright (c) 2024-2025 Haydn Paterson (sinclair) <haydn.developer@gmail.com>
8+
9+
Permission is hereby granted, free of charge, to any person obtaining a copy
10+
of this software and associated documentation files (the "Software"), to deal
11+
in the Software without restriction, including without limitation the rights
12+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13+
copies of the Software, and to permit persons to whom the Software is
14+
furnished to do so, subject to the following conditions:
15+
16+
The above copyright notice and this permission notice shall be included in
17+
all copies or substantial portions of the Software.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25+
THE SOFTWARE.
26+
27+
---------------------------------------------------------------------------*/
28+
29+
export * as Guard from './guard.ts'

src/runtime/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ THE SOFTWARE.
2929
// deno-fmt-ignore-file
3030
// deno-lint-ignore-file no-unused-vars no-explicit-any
3131

32-
import * as Guard from './guard.ts'
32+
import { Guard } from '../guard/index.ts'
3333
import * as Token from './token.ts'
3434
import * as Types from './types.ts'
3535

src/runtime/runtime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ THE SOFTWARE.
2727
---------------------------------------------------------------------------*/
2828

2929
export * as Token from "./token.ts"
30-
export * from "./guard.ts"
3130
export * from "./types.ts"
3231
export * from "./module.ts"
3332
export * from "./parse.ts"

src/runtime/types.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ THE SOFTWARE.
2626
2727
---------------------------------------------------------------------------*/
2828

29-
import * as Guard from './guard.ts'
29+
import { Guard } from '../guard/index.ts'
3030

3131
// deno-lint-ignore-file
3232
// deno-fmt-ignore-file
@@ -213,8 +213,6 @@ export function IsIdent(value: unknown): value is IIdent {
213213
&& Guard.HasPropertyKey(value, 'type')
214214
&& Guard.IsEqual(value.type, 'Ident')
215215
}
216-
217-
218216
// ------------------------------------------------------------------
219217
// Number
220218
// ------------------------------------------------------------------

0 commit comments

Comments
 (0)