latex-ub/services/web/frontend/js/features/word-count-modal/utils/api.js
2025-05-05 12:24:05 +00:00

10 lines
288 B
JavaScript

import { getJSON } from '../../../infrastructure/fetch-json'
export function fetchWordCount(projectId, clsiServerId, options) {
let query = ''
if (clsiServerId) {
query = `?clsiserverid=${clsiServerId}`
}
return getJSON(`/project/${projectId}/wordcount${query}`, options)
}