FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
StringEncrypt-JavaScript/src/ErrorCode.js at main · PELock/StringEncrypt-JavaScript · GitHub
PELock
/
StringEncrypt-JavaScript
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
StringEncrypt-JavaScript
/
src
/
ErrorCode.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (20 loc) · 393 Bytes
Breadcrumbs
StringEncrypt-JavaScript
/
src
/
ErrorCode.js
Copy path
File metadata and controls
20 lines (20 loc) · 393 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
* API error codes returned in encrypt responses (`error` field).
*
*
@see
https://www.stringencrypt.com/api/
*/
export
const
ErrorCode
=
Object
.
freeze
(
{
SUCCESS
:
0
,
EMPTY_LABEL
:
1
,
LENGTH_LABEL
:
2
,
EMPTY_STRING
:
3
,
EMPTY_BYTES
:
4
,
EMPTY_INPUT
:
5
,
LENGTH_STRING
:
6
,
INVALID_LANG
:
7
,
INVALID_LOCALE
:
8
,
CMD_MIN
:
9
,
CMD_MAX
:
10
,
LENGTH_BYTES
:
11
,
DEMO
:
100
,
}
)
;
Back
|
FazBrowse Home
|
New Git URL