UNPKG
locize
Version:
latest (4.1.0)
4.1.0
4.0.24
4.0.23
4.0.22
4.0.21
4.0.20
4.0.19
4.0.18
4.0.17
4.0.16
4.0.15
4.0.14
4.0.13
4.0.12
4.0.11
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.3.0
3.2.5
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.1
3.1.0
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.4.6
2.4.5
2.4.4
2.4.3
2.4.2
2.4.1
2.4.0
2.3.1
2.3.0
2.2.5
2.2.4
2.2.3
2.2.2
2.2.1
2.2.0
2.1.0
2.0.0
1.2.0
1.1.0
1.0.0
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0
0.0.5
0.0.4
0.0.3
This package adds the incontext editor to your i18next setup.
github.com/locize/locize
locize/locize
locize
/
src
/
startStandalone.js
9 lines
(6 loc)
•
295 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ start }
from
'./process.js'
export
function
startStandalone
(
options = {}
) {
const
{ implementation, ...rest } = options
start
(implementation,
Object
.
keys
(rest).
length
>
0
? rest :
undefined
) }
if
(
typeof
window
!==
'undefined'
) {
window
.
locizeStartStandalone
= startStandalone }