forked from opencrvs/opencrvs-farajaland
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistrationNumber.ts
More file actions
23 lines (21 loc) · 904 Bytes
/
registrationNumber.ts
File metadata and controls
23 lines (21 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
* OpenCRVS is also distributed under the terms of the Civil Registration
* & Healthcare Disclaimer located at http://opencrvs.org/license.
*
* Copyright (C) The OpenCRVS Authors located at https://github.com/opencrvs/opencrvs-core/blob/master/AUTHORS.
*/
import { customAlphabet } from 'nanoid'
const nanoid = customAlphabet('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ', 12)
/**
* Generates a custom registration number for events. You may edit this function to generate a custom registration number.
* The returned registration number must be a string.
*
* @returns {string} Registration number for the event.
*/
export function generateRegistrationNumber(): string {
return nanoid()
}