Skip to content

Commit

Permalink
fix: contradictory license statement (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Im-Beast authored Oct 1, 2023
2 parents 1a1d672 + 49e7a24 commit e69f4d7
Show file tree
Hide file tree
Showing 65 changed files with 65 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
deno run -A --no-check https://deno.land/x/anzu@1.0.0/src/cli.ts \
-i ./ "/.+\.ts/" \
-e "deps.ts" \
-l "// Copyright 2023 Im-Beast. All rights reserved. MIT license." \
-l "// Copyright 2023 Im-Beast. MIT license." \
-p
- name: Push changes
Expand Down
2 changes: 1 addition & 1 deletion examples/calculator.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
// Simple calculator demo using grid layout

import { crayon } from "https://deno.land/x/crayon@3.3.3/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion examples/demo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { crayon } from "https://deno.land/x/crayon@3.3.3/mod.ts";

import { Tui } from "../src/tui.ts";
Expand Down
2 changes: 1 addition & 1 deletion examples/layout.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { crayon } from "https://deno.land/x/crayon@3.3.3/mod.ts";

import { Tui } from "../src/tui.ts";
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
export * from "./src/component.ts";
export * from "./src/controls.ts";
export * from "./src/event_emitter.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/canvas/box.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { DrawObject, DrawObjectOptions } from "./draw_object.ts";
import { Signal, SignalOfObject } from "../signals/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/canvas/canvas.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

// TODO; on style change, dont update intersections, just clear current ones
import { EmitterEvent, EventEmitter } from "../event_emitter.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/canvas/draw_object.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { fitsInRectangle, rectangleEquals, rectangleIntersection } from "../utils/numbers.ts";

// FIXME: rename to painters, drawobjects sounds cringe
Expand Down
2 changes: 1 addition & 1 deletion src/canvas/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
export * from "./box.ts";
export * from "./text.ts";
export * from "./canvas.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/canvas/text.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { DrawObject, DrawObjectOptions } from "./draw_object.ts";

import { getMultiCodePointCharacters, textWidth } from "../utils/strings.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Tui } from "./tui.ts";
import { hierarchizeTheme, Style, Theme } from "./theme.ts";
import { EmitterEvent, EventEmitter } from "./event_emitter.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/box.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { BoxObject } from "../canvas/box.ts";
import { Component } from "../component.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/components/button.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { ComponentOptions } from "../component.ts";
import { Box } from "./box.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/components/checkbox.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { ComponentOptions } from "../component.ts";
import { Computed, Signal } from "../signals/mod.ts";
import { signalify } from "../utils/signals.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/combobox.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Computed, Signal, SignalOfObject } from "../signals/mod.ts";
import { signalify } from "../utils/signals.ts";
import { Button, ButtonOptions } from "./button.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/frame.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Component, ComponentOptions } from "../component.ts";

import { BoxObject } from "../canvas/box.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/input.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Box } from "./box.ts";

import { Theme } from "../theme.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/label.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Component, ComponentOptions } from "../component.ts";
import { TextObject, TextRectangle } from "../canvas/text.ts";
import { Computed, Effect, Signal, SignalOfObject } from "../signals/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
export * from "./box.ts";
export * from "./button.ts";
export * from "./checkbox.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/progressbar.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Box } from "./box.ts";
import { Theme } from "../theme.ts";
import { ComponentOptions } from "../component.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/slider.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Box } from "./box.ts";
import { Theme } from "../theme.ts";
import { ComponentOptions } from "../component.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/table.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Component, ComponentOptions } from "../component.ts";

import { BoxObject } from "../canvas/box.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/text.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { TextObject, TextRectangle } from "../canvas/text.ts";
import { Component, ComponentOptions } from "../component.ts";
import { Signal, SignalOfObject } from "../signals/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/components/textbox.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Box } from "./box.ts";
import { ComponentOptions } from "../component.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/controls.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Component } from "./component.ts";
import { Tui } from "./tui.ts";
import { DISABLE_MOUSE, ENABLE_MOUSE } from "./utils/ansi_codes.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/event_emitter.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

/** Type for event listener function */
export type EventListener<
Expand Down
2 changes: 1 addition & 1 deletion src/input.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Tui } from "./tui.ts";
import { emitInputEvents } from "./input_reader/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/input_reader/decoders/keyboard.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
/** Decode code sequence to {KeyPress} object. */
import type { Alphabet, Key, KeyPressEvent } from "../types.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/input_reader/decoders/mouse.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import type { MouseEvent, MousePressEvent, MouseScrollEvent } from "../types.ts";

let mouseEvent: MouseEvent = {
Expand Down
2 changes: 1 addition & 1 deletion src/input_reader/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

import type { KeyPressEvent, MouseEvent, MousePressEvent, MouseScrollEvent } from "./types.ts";
import type { Stdin } from "../types.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/input_reader/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Range } from "../types.ts";

/** Interface defining key press issued to stdin */
Expand Down
2 changes: 1 addition & 1 deletion src/layout/errors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
export class LayoutInvalidElementsPatternError extends Error {
constructor() {
super(
Expand Down
2 changes: 1 addition & 1 deletion src/layout/grid_layout.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Signal } from "../signals/signal.ts";
import { signalify } from "../utils/signals.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/layout/horizontal_layout.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Signal } from "../signals/signal.ts";
import { signalify } from "../utils/signals.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/layout/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
export * from "./errors.ts";
export * from "./horizontal_layout.ts";
export * from "./types.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/layout/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import type { Signal, SignalOfObject } from "../signals/signal.ts";
import type { Rectangle } from "../types.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/layout/vertical_layout.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Signal } from "../signals/signal.ts";
import { Effect } from "../signals/effect.ts";
import { signalify } from "../utils/signals.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/signals/computed.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Signal } from "./signal.ts";
import type { Dependant, Dependency } from "./types.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/signals/dependency_tracking.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import type { Dependant, Dependency } from "./types.ts";

export let activeSignals: Set<Dependency> | undefined;
Expand Down
2 changes: 1 addition & 1 deletion src/signals/effect.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { optimizeDependencies, trackDependencies } from "./dependency_tracking.ts";
import type { Dependant, Dependency } from "./types.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/signals/flusher.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import type { Dependant, Dependency, LazyDependant } from "./types.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion src/signals/lazy_computed.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Computable, Computed } from "./computed.ts";
import { Dependency } from "./types.ts";
import { Flusher } from "./flusher.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/signals/lazy_effect.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Effect, Effectable } from "./effect.ts";
import { Flusher } from "./flusher.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/signals/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
export * from "./signal.ts";
export * from "./computed.ts";
export * from "./effect.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/signals/reactivity.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Signal } from "./signal.ts";

export type Reactive<T> = T & {
Expand Down
2 changes: 1 addition & 1 deletion src/signals/signal.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { activeSignals } from "./dependency_tracking.ts";
import {
makeMapMethodsReactive,
Expand Down
2 changes: 1 addition & 1 deletion src/signals/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Flusher } from "./flusher.ts";

/** Type describing function that gets called each time signal changes */
Expand Down
2 changes: 1 addition & 1 deletion src/theme.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

/** Function that's supposed to return styled text given string as parameter */
export type Style = (text: string) => string;
Expand Down
2 changes: 1 addition & 1 deletion src/tui.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { BoxObject, Canvas } from "./canvas/mod.ts";
import { Component } from "./component.ts";
import { EmitterEvent, EventEmitter } from "./event_emitter.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

/** Type for Standard Output – where data gets written */
export type Stdout = typeof Deno.stdout;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/ansi_codes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

/** Get ANSI escape code for moving cursor to given location */
export function moveCursor(row: number, column: number): string {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/async.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

/** Asynchronously sleep for {time} milliseconds */
export function sleep(time: number): Promise<void> {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

import { Tui } from "../tui.ts";
import { Component } from "../component.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
export * from "./ansi_codes.ts";
export * from "./async.ts";
export * from "./numbers.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/numbers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

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

Expand Down
2 changes: 1 addition & 1 deletion src/utils/signals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Signal, SignalOptions } from "../signals/mod.ts";

/** Creates signal from input if it's not already a signal */
Expand Down
2 changes: 1 addition & 1 deletion src/utils/sorted_array.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

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

Expand Down
2 changes: 1 addition & 1 deletion src/utils/strings.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

/**
* Regexp that allows for extracting unicode sequences that are supposed to represent single character
Expand Down
2 changes: 1 addition & 1 deletion src/view.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Signal, signalify } from "../mod.ts";
import { Offset, Rectangle } from "./types.ts";

Expand Down
2 changes: 1 addition & 1 deletion tests/event_emitter.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

import { EventEmitter } from "../src/event_emitter.ts";
import { assertEquals } from "./deps.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/signals.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.
import { Computed, Effect, Signal } from "../src/signals/mod.ts";
import { IS_REACTIVE } from "../src/signals/reactivity.ts";
import { assertArrayIncludes, assertEquals, assertThrows } from "./deps.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/async.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

import { sleep } from "../../src/utils/async.ts";
import { assertAlmostEquals } from "../deps.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/numbers.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

import { clamp, fits, fitsInRectangle, normalize } from "../../src/utils/numbers.ts";
import { assertEquals } from "../deps.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/sorted_array.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

import { SortedArray } from "../../src/utils/sorted_array.ts";
import { assertEquals } from "../deps.ts";
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/strings.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Im-Beast. All rights reserved. MIT license.
// Copyright 2023 Im-Beast. MIT license.

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

0 comments on commit e69f4d7

Please sign in to comment.