Sha256: 140620019d342f1ab87c97a2f0439319bf99e7c097cce12b58c40f7a0b9538b9
Contents?: true
Size: 331 Bytes
Versions: 141
Compression:
Stored size: 331 Bytes
Contents
'use strict'; function Raindrops() {} Raindrops.prototype.convert = function (n) { var result = ''; if (n % 3 === 0) { result += 'Pling'; } if (n % 5 === 0) { result += 'Plang'; } if (n % 7 === 0) { result += 'Plong'; } if (result === '') { return n.toString(); } return result; }; module.exports = Raindrops;
Version data entries
141 entries across 141 versions & 1 rubygems