UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

16 lines (15 loc) 627 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.mul = mul; const _operator_ts_1 = require("../_helpers/_operator.js"); function mul(a, b) { // discuss at: https://locutus.io/python/operator/mul/ // parity verified: Python 3.12 // original by: Kevin van Zonneveld (https://kvz.io) // note 1: Multiplies numbers and repeats strings or arrays like Python's operator.mul. // example 1: mul(6, 7) // returns 1: 42 // example 2: mul('ha', 3) // returns 2: 'hahaha' return (0, _operator_ts_1.pythonMul)(a, b, 'mul'); }