UNPKG

@wix-pilot/core

Version:

A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)

12 lines (11 loc) 283 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.truncateString = truncateString; function truncateString(str, limit = 2000) { if (str.length <= limit) { return str; } else { return str.slice(0, limit) + "..."; } }