fix: Fix functions not supported in Deno

This commit is contained in:
raon0211 2024-07-18 20:44:57 +09:00
parent 964fdd3628
commit ad2724aaf7
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { isIndex } from "../_internal/isIndex";
import { toPath } from "../_internal/toPath";
import { isIndex } from "../_internal/isIndex.ts";
import { toPath } from "../_internal/toPath.ts";
/**
* Sets the value at the specified path of the given object. If any part of the path does not exist, it will be created.

View File

@ -1,4 +1,4 @@
import { getWords } from './_internal/getWords';
import { getWords } from './_internal/getWords.ts';
/**
* Converts the first character of each word in a string to uppercase and the remaining characters to lowercase.