commit
5ec2f33cb0
|
@ -477,7 +477,7 @@ export function sortByCssOrder(a, b) {
|
||||||
* trimToEndSentence('Hello, world! I am from'); // 'Hello, world!'
|
* trimToEndSentence('Hello, world! I am from'); // 'Hello, world!'
|
||||||
*/
|
*/
|
||||||
export function trimToEndSentence(input, include_newline = false) {
|
export function trimToEndSentence(input, include_newline = false) {
|
||||||
const punctuation = new Set(['.', '!', '?', '*', '"', ')', '}', '`', ']', '$', '。', '!', '?', '”', ')', '】', '’', '」']); // extend this as you see fit
|
const punctuation = new Set(['.', '!', '?', '*', '"', ')', '}', '`', ']', '$', '。', '!', '?', '”', ')', '】', '’', '」', '_']); // extend this as you see fit
|
||||||
let last = -1;
|
let last = -1;
|
||||||
|
|
||||||
for (let i = input.length - 1; i >= 0; i--) {
|
for (let i = input.length - 1; i >= 0; i--) {
|
||||||
|
|
Loading…
Reference in New Issue