1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-03 14:32:21 +02:00
TableFilter/src/helpers.js

24 lines
433 B
JavaScript
Raw Normal View History

2014-11-16 01:29:07 +01:00
/**
* Misc helpers
*/
2015-05-30 14:23:33 +02:00
import Str from './string';
2015-04-04 10:10:09 +02:00
2015-05-30 14:23:33 +02:00
export default {
removeNbFormat(data, format){
if(!data){
return;
}
if(!format){
format = 'us';
}
2015-05-30 14:23:33 +02:00
let n = data;
2015-07-04 14:08:58 +02:00
if(Str.lower(format) === 'us'){
n =+ n.replace(/[^\d\.-]/g,'');
} else {
n =+ n.replace(/[^\d\,-]/g,'').replace(',','.');
}
return n;
2014-11-16 01:29:07 +01:00
}
};