Skip to main content
Module

x/ramda/test/toLower.js

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

describe('toLower', function() { it('returns the lower-case equivalent of the input string', function() { eq(R.toLower('XYZ'), 'xyz'); });
});