]> git.r.bdr.sh - rbdr/dotfiles/blob
fa11ff8eeff85690563c935c216d0d023b8ff787
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = function (t, a) {
4 a(t.call('raz'), 'Raz', "Word");
5 a(t.call('BLA'), 'BLA', "Uppercase");
6 a(t.call(''), '', "Empty");
7 a(t.call('a'), 'A', "One letter");
8 a(t.call('this is a test'), 'This is a test', "Sentence");
9 };