🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

@accuser/ulnjs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@accuser/ulnjs

Unique Learner Number (ULN) library for JavaScript

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

Unique Learner Number

A Unique Learner Number (ULN) is a unique identifier assigned to learners in the United Kingdom. It is used to track and record an individual's learning and qualifications across different educational institutions and training providers.

Installation

npm install @accuser/ulnjs

Examples

Create a new ULN object from a String value:

const uln = ULN.fromString("0000000042");

Validate a ULN:

if (!ULN.isValid(uln)) {
    // ...grumble
};

Require a valid ULN:

class LearnerRegistrationRequest {
    #uln;

    /**
     * @param {string|ULN} uln
     */
    constructor(uln) {
        // `uln` is not `null` or `undefined`
        // `uln` is a valid ULN value
        this.#uln = ULN.requireValidULN(uln);
    }
}

Testing

To clone the package repo and perform unit tests:

git clone https://github.com/accuser/ulnjs.git
cd ulnjs
node run test

Contributors

The original author of @accuser/ulnjs is Matthew Gibbons.

License

Copyright 2024 Matthew Gibbons

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Keywords

uln

FAQs

Package last updated on 15 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts