Skip to content

pantoken / packages/core/src / dedupeByName

Hàm: dedupeByName()

dedupeByName(tokens): Token[]

Beta

Loại bỏ token trùng lặp theo tên, giữ lần xuất hiện cuối cùng (để các plugin chạy sau thắng).

Tham số

tokens

Token[]

Trả về

Token[]

Ví dụ

ts
import { dedupeByName } from "@pantoken/core";
import type { Token } from "@pantoken/model";

const tokens: Token[] = [
  { name: "--instui-x", syntax: "<color>", inherits: true, value: "#fff" },
  { name: "--instui-x", syntax: "<color>", inherits: true, value: "#000" },
];
dedupeByName(tokens); // → one token, value "#000" (the later wins)