mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-11-22 23:16:09 +01:00
8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
'use strict';
|
|
// https://github.com/sebmarkbage/ecmascript-string-left-right-trim
|
|
require('./_string-trim')('trimRight', function ($trim) {
|
|
return function trimRight() {
|
|
return $trim(this, 2);
|
|
};
|
|
}, 'trimEnd');
|