Home | History | Annotate | Download | only in lib

Lines Matching refs:truncation

584   function truncate(length, truncation) {
586 truncation = Object.isUndefined(truncation) ? '...' : truncation;
588 this.slice(0, length - truncation.length) + truncation : String(this);