Files
RoboCommander/node_modules/react-select/lib/utils/trim.js

10 lines
179 B
JavaScript
Raw Normal View History

2026-04-05 16:14:49 -04:00
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var trim = function trim(str) {
return str.replace(/^\s+|\s+$/g, '');
};
exports.default = trim;