mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
c8f139cced
Refactor "Word Count" modal GitOrigin-RevId: 00561b5b3f8f161238321c440ecde67cd42ece1c
10 lines
288 B
JavaScript
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)
|
|
}
|