Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/proc/site/scripts/deps/path.ts>extname

A better way to work with processes in Deno.
Latest
function extname
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

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"

Parameters

path: string

with extension

Returns

string

extension (ex. for file.ts returns .ts)