anorgatarrak-wordpress-theme/node_modules/underscore.string/reverse.js

6 lines
117 B
JavaScript
Raw Normal View History

var chars = require('./chars');
module.exports = function reverse(str) {
return chars(str).reverse().join('');
};