Sha256: 2c290fb7392d79bc4a831ae62cfb1f164b85cec562d7a97e9f9f215468937f01
Contents?: true
Size: 316 Bytes
Versions: 185
Compression:
Stored size: 316 Bytes
Contents
const Raindrops = () => ({ convert: (n) => { let result = ''; if (n % 3 === 0) { result += 'Pling'; } if (n % 5 === 0) { result += 'Plang'; } if (n % 7 === 0) { result += 'Plong'; } return result === '' ? n.toString() : result; }, }); export default Raindrops;
Version data entries
185 entries across 185 versions & 1 rubygems