File tree Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ import { press } from "./press.ts";
33import { getLineCount } from "./node.ts" ;
44import { range } from "../../range.ts" ;
55import { textInput } from "./dom.ts" ;
6- import { isArray , isNumber , isString } from "@core/unknownutil" ;
6+ import { isArray } from "@core/unknownutil/is/array" ;
7+ import { isNumber } from "@core/unknownutil/is/number" ;
8+ import { isString } from "@core/unknownutil/is/string" ;
79import { delay } from "@std/async/delay" ;
810
911export const undo = ( count = 1 ) : void => {
Original file line number Diff line number Diff line change 1- import { isNumber , isString , isUndefined } from "@core/unknownutil" ;
2- import { ensure , isArray } from "@core/unknownutil" ;
1+ import { isArray } from "@core/unknownutil/is/array" ;
2+ import { isNumber } from "@core/unknownutil/is/number" ;
3+ import { isString } from "@core/unknownutil/is/string" ;
4+ import { ensure } from "@core/unknownutil/ensure" ;
5+ import { isUndefined } from "@core/unknownutil/is/undefined" ;
36import { getCachedLines } from "./getCachedLines.ts" ;
47import { takeInternalLines } from "./takeInternalLines.ts" ;
58import type { BaseLine , Line } from "@cosense/types/userscript" ;
Original file line number Diff line number Diff line change @@ -9,12 +9,11 @@ import type {
99 SessionError ,
1010} from "@cosense/types/rest" ;
1111import type { Maybe } from "option-t/maybe" ;
12- import {
13- isArrayOf ,
14- isLiteralOneOf ,
15- isRecord ,
16- isString ,
17- } from "@core/unknownutil" ;
12+ import { isArrayOf } from "@core/unknownutil/is/array-of" ;
13+ import { isLiteralOneOf } from "@core/unknownutil/is/literal-one-of" ;
14+ import { isRecord } from "@core/unknownutil/is/record" ;
15+ import { isString } from "@core/unknownutil/is/string" ;
16+
1817import type { HTTPError } from "./responseIntoResult.ts" ;
1918
2019export interface RESTfullAPIErrorMap {
Original file line number Diff line number Diff line change 1- import { isString } from "@core/unknownutil" ;
1+ import { isString } from "@core/unknownutil/is/string " ;
22
33/** インデント数を数える */
44export const getIndentCount = ( text : string ) : number =>
You can’t perform that action at this time.
0 commit comments