numeral.js 负数 (-20) 中的自定义格式为 20(-)

custom format in numeral.js negative number (-20) to be 20(-)

我使用 numeral.js

我对做感兴趣 custom format 无论哪里有负数(比如 - 20),图书馆都会向我显示 20 (-)

我需要括号中的减号

我该怎么做?

你可以做类似的事情

numeral.register('format', 'negative', {
    regexps: {
        format: /(-)/,
        unformat: /(-)/
    },
    format: function(value, format, roundingFunction) {
        return value < 0 ? -value + " (-)" : value;
    },
    unformat: function(s) {
        return s.endsWith(" (-)") ? -parseInt(s.substr(0, s.length - 4)) : parseInt(s);
    }
});

// use your custom format
const result = numeral(-5).format('(-)');
const unresult = numeral(result).format();
console.log(result)
console.log(unresult)
<script src="//cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>