wallabag/app/Resources/static/themes/baggy/js/autoCompleteTags.js
Thomas Citharel af61cb80eb es6 imports
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2016-11-15 21:54:41 +01:00

9 lines
151 B
JavaScript
Executable file

function split(val) {
return val.split(/,\s*/);
}
function extractLast(term) {
return split(term).pop();
}
export default { split, extractLast };