Skip to content

Commit e69f4d7

Browse files
authored
fix: contradictory license statement (#33)
2 parents 1a1d672 + 49e7a24 commit e69f4d7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+65
-65
lines changed

.github/workflows/deno.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
deno run -A --no-check https://deno.land/x/[email protected]/src/cli.ts \
4343
-i ./ "/.+\.ts/" \
4444
-e "deps.ts" \
45-
-l "// Copyright 2023 Im-Beast. All rights reserved. MIT license." \
45+
-l "// Copyright 2023 Im-Beast. MIT license." \
4646
-p
4747
4848
- name: Push changes

examples/calculator.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
// Simple calculator demo using grid layout
33

44
import { crayon } from "https://deno.land/x/[email protected]/mod.ts";

examples/demo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { crayon } from "https://deno.land/x/[email protected]/mod.ts";
33

44
import { Tui } from "../src/tui.ts";

examples/layout.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { crayon } from "https://deno.land/x/[email protected]/mod.ts";
33

44
import { Tui } from "../src/tui.ts";

mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
export * from "./src/component.ts";
33
export * from "./src/controls.ts";
44
export * from "./src/event_emitter.ts";

src/canvas/box.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { DrawObject, DrawObjectOptions } from "./draw_object.ts";
33
import { Signal, SignalOfObject } from "../signals/mod.ts";
44

src/canvas/canvas.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
// TODO; on style change, dont update intersections, just clear current ones
44
import { EmitterEvent, EventEmitter } from "../event_emitter.ts";

src/canvas/draw_object.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { fitsInRectangle, rectangleEquals, rectangleIntersection } from "../utils/numbers.ts";
33

44
// FIXME: rename to painters, drawobjects sounds cringe

src/canvas/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
export * from "./box.ts";
33
export * from "./text.ts";
44
export * from "./canvas.ts";

src/canvas/text.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { DrawObject, DrawObjectOptions } from "./draw_object.ts";
33

44
import { getMultiCodePointCharacters, textWidth } from "../utils/strings.ts";

src/component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Tui } from "./tui.ts";
33
import { hierarchizeTheme, Style, Theme } from "./theme.ts";
44
import { EmitterEvent, EventEmitter } from "./event_emitter.ts";

src/components/box.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { BoxObject } from "../canvas/box.ts";
33
import { Component } from "../component.ts";
44

src/components/button.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { ComponentOptions } from "../component.ts";
33
import { Box } from "./box.ts";
44

src/components/checkbox.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { ComponentOptions } from "../component.ts";
33
import { Computed, Signal } from "../signals/mod.ts";
44
import { signalify } from "../utils/signals.ts";

src/components/combobox.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Computed, Signal, SignalOfObject } from "../signals/mod.ts";
33
import { signalify } from "../utils/signals.ts";
44
import { Button, ButtonOptions } from "./button.ts";

src/components/frame.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Component, ComponentOptions } from "../component.ts";
33

44
import { BoxObject } from "../canvas/box.ts";

src/components/input.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Box } from "./box.ts";
33

44
import { Theme } from "../theme.ts";

src/components/label.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Component, ComponentOptions } from "../component.ts";
33
import { TextObject, TextRectangle } from "../canvas/text.ts";
44
import { Computed, Effect, Signal, SignalOfObject } from "../signals/mod.ts";

src/components/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
export * from "./box.ts";
33
export * from "./button.ts";
44
export * from "./checkbox.ts";

src/components/progressbar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Box } from "./box.ts";
33
import { Theme } from "../theme.ts";
44
import { ComponentOptions } from "../component.ts";

src/components/slider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Box } from "./box.ts";
33
import { Theme } from "../theme.ts";
44
import { ComponentOptions } from "../component.ts";

src/components/table.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Component, ComponentOptions } from "../component.ts";
33

44
import { BoxObject } from "../canvas/box.ts";

src/components/text.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { TextObject, TextRectangle } from "../canvas/text.ts";
33
import { Component, ComponentOptions } from "../component.ts";
44
import { Signal, SignalOfObject } from "../signals/mod.ts";

src/components/textbox.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Box } from "./box.ts";
33
import { ComponentOptions } from "../component.ts";
44

src/controls.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Component } from "./component.ts";
33
import { Tui } from "./tui.ts";
44
import { DISABLE_MOUSE, ENABLE_MOUSE } from "./utils/ansi_codes.ts";

src/event_emitter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
/** Type for event listener function */
44
export type EventListener<

src/input.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Tui } from "./tui.ts";
33
import { emitInputEvents } from "./input_reader/mod.ts";
44

src/input_reader/decoders/keyboard.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
/** Decode code sequence to {KeyPress} object. */
33
import type { Alphabet, Key, KeyPressEvent } from "../types.ts";
44

src/input_reader/decoders/mouse.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import type { MouseEvent, MousePressEvent, MouseScrollEvent } from "../types.ts";
33

44
let mouseEvent: MouseEvent = {

src/input_reader/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import type { KeyPressEvent, MouseEvent, MousePressEvent, MouseScrollEvent } from "./types.ts";
44
import type { Stdin } from "../types.ts";

src/input_reader/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Range } from "../types.ts";
33

44
/** Interface defining key press issued to stdin */

src/layout/errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
export class LayoutInvalidElementsPatternError extends Error {
33
constructor() {
44
super(

src/layout/grid_layout.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Signal } from "../signals/signal.ts";
33
import { signalify } from "../utils/signals.ts";
44

src/layout/horizontal_layout.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Signal } from "../signals/signal.ts";
33
import { signalify } from "../utils/signals.ts";
44

src/layout/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
export * from "./errors.ts";
33
export * from "./horizontal_layout.ts";
44
export * from "./types.ts";

src/layout/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import type { Signal, SignalOfObject } from "../signals/signal.ts";
33
import type { Rectangle } from "../types.ts";
44

src/layout/vertical_layout.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Signal } from "../signals/signal.ts";
33
import { Effect } from "../signals/effect.ts";
44
import { signalify } from "../utils/signals.ts";

src/signals/computed.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Signal } from "./signal.ts";
33
import type { Dependant, Dependency } from "./types.ts";
44

src/signals/dependency_tracking.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import type { Dependant, Dependency } from "./types.ts";
33

44
export let activeSignals: Set<Dependency> | undefined;

src/signals/effect.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { optimizeDependencies, trackDependencies } from "./dependency_tracking.ts";
33
import type { Dependant, Dependency } from "./types.ts";
44

src/signals/flusher.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import type { Dependant, Dependency, LazyDependant } from "./types.ts";
33

44
/**

src/signals/lazy_computed.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Computable, Computed } from "./computed.ts";
33
import { Dependency } from "./types.ts";
44
import { Flusher } from "./flusher.ts";

src/signals/lazy_effect.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Effect, Effectable } from "./effect.ts";
33
import { Flusher } from "./flusher.ts";
44

src/signals/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
export * from "./signal.ts";
33
export * from "./computed.ts";
44
export * from "./effect.ts";

src/signals/reactivity.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Signal } from "./signal.ts";
33

44
export type Reactive<T> = T & {

src/signals/signal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { activeSignals } from "./dependency_tracking.ts";
33
import {
44
makeMapMethodsReactive,

src/signals/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Flusher } from "./flusher.ts";
33

44
/** Type describing function that gets called each time signal changes */

src/theme.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
/** Function that's supposed to return styled text given string as parameter */
44
export type Style = (text: string) => string;

src/tui.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { BoxObject, Canvas } from "./canvas/mod.ts";
33
import { Component } from "./component.ts";
44
import { EmitterEvent, EventEmitter } from "./event_emitter.ts";

src/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
/** Type for Standard Output – where data gets written */
44
export type Stdout = typeof Deno.stdout;

src/utils/ansi_codes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
/** Get ANSI escape code for moving cursor to given location */
44
export function moveCursor(row: number, column: number): string {

src/utils/async.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
/** Asynchronously sleep for {time} milliseconds */
44
export function sleep(time: number): Promise<void> {

src/utils/component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import { Tui } from "../tui.ts";
44
import { Component } from "../component.ts";

src/utils/mod.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
export * from "./ansi_codes.ts";
33
export * from "./async.ts";
44
export * from "./numbers.ts";

src/utils/numbers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import type { Rectangle } from "../types.ts";
44

src/utils/signals.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Signal, SignalOptions } from "../signals/mod.ts";
33

44
/** Creates signal from input if it's not already a signal */

src/utils/sorted_array.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
export type CompareFn<T> = (a: T, b: T) => number;
44

src/utils/strings.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
/**
44
* Regexp that allows for extracting unicode sequences that are supposed to represent single character

src/view.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Signal, signalify } from "../mod.ts";
33
import { Offset, Rectangle } from "./types.ts";
44

tests/event_emitter.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import { EventEmitter } from "../src/event_emitter.ts";
44
import { assertEquals } from "./deps.ts";

tests/signals.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22
import { Computed, Effect, Signal } from "../src/signals/mod.ts";
33
import { IS_REACTIVE } from "../src/signals/reactivity.ts";
44
import { assertArrayIncludes, assertEquals, assertThrows } from "./deps.ts";

tests/utils/async.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import { sleep } from "../../src/utils/async.ts";
44
import { assertAlmostEquals } from "../deps.ts";

tests/utils/numbers.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import { clamp, fits, fitsInRectangle, normalize } from "../../src/utils/numbers.ts";
44
import { assertEquals } from "../deps.ts";

tests/utils/sorted_array.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import { SortedArray } from "../../src/utils/sorted_array.ts";
44
import { assertEquals } from "../deps.ts";

tests/utils/strings.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
1+
// Copyright 2023 Im-Beast. MIT license.
22

33
import { characterWidth, insertAt, stripStyles, textWidth, UNICODE_CHAR_REGEXP } from "../../src/utils/strings.ts";
44
import { assertEquals } from "../deps.ts";

0 commit comments

Comments
 (0)