function isNilView codeisNil(id: string): booleanCheck if the passed UUID is the nil UUID. ExamplesExample 1 import { isNil } from "@std/uuid"; isNil("00000000-0000-0000-0000-000000000000"); // true isNil(crypto.randomUUID()); // false Parametersid: stringView codeReturn TypebooleanView code