Skip to main content
Module

x/ramda/test/repeat.js

:ram: Practical functional Javascript
Latest
File
var R = require('../source');var eq = require('./shared/eq');

describe('repeat', function() { it('returns a lazy list of identical values', function() { eq(R.repeat(0, 5), [0, 0, 0, 0, 0]); });
it('can accept any value, including `null`', function() { eq(R.repeat(null, 3), [null, null, null]); });
});