import { extname } from "https://deno.land/x/proc@0.22.1/site/scripts/deps/path.ts";
Return the extension of the path
with leading period.
Examples
Example 1
Example 1
import { extname } from "https://deno.land/std@0.224.0/path/extname.ts";
console.log(extname("/home/user/Documents/")); // ""
console.log(extname("/home/user/Documents/image.png")); // ".png"