Skip to main content
Module

std/node/_module/example.js

Deno standard library
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// deno-lint-ignore no-undefconst leftPad = require("left-pad");console.log(leftPad("foo", 5)); // => " foo"