UNPKG

@polkadot/dev

Version:

A collection of shared CI scripts and development environment used by @polkadot projects

14 lines (12 loc) 253 B
// Copyright 2017-2025 @polkadot/dev authors & contributors // SPDX-License-Identifier: Apache-2.0 /** * Returns the sum of 2 numbers * * @param {number} a * @param {number} b * @returns {number} */ export function sum (a, b) { return a + b; }