Skip to main content
Module

x/fae/inc.ts

A functional module for Deno inspired from Ramda.
Latest
File
// Copyright (c) 2020 Jozty. All rights reserved. MIT license.
/** * Increases its argument by 1. */export function inc(element: number) { return element + 1;}