Security update to Drupal 8.4.6
[yaffs-website] / node_modules / underscore.string / reverse.js
1 var chars = require('./chars');
2
3 module.exports = function reverse(str) {
4   return chars(str).reverse().join('');
5 };