Skip to content

Commit 4d06b57

Browse files
Project: Add license to file headers.
1 parent f150c79 commit 4d06b57

File tree

5 files changed

+26
-1
lines changed

5 files changed

+26
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# micro:bit Universal Hex
1+
# micro:bit Universal Hex TypeScript Library
22

33
[![CircleCI](https://circleci.com/gh/microbit-foundation/microbit-universal-hex.svg?style=svg)](https://circleci.com/gh/microbit-foundation/microbit-universal-hex)
44

src/__tests__/utils.spec.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Tests for utilities.
3+
*
4+
* (c) 2020 Micro:bit Educational Foundation and contributors.
5+
* SPDX-License-Identifier: MIT
6+
*/
17
import * as utils from '../utils';
28

39
describe('Test hexStrToBytes()', () => {

src/ihex.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Generate and process Intel Hex records.
3+
*
4+
* (c) 2020 Micro:bit Educational Foundation and contributors.
5+
* SPDX-License-Identifier: MIT
6+
*/
17
import * as utils from './utils';
28

39
/** Values for the Record Type field, including Universal Hex custom types. */

src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
/**
2+
* Exposing exports for the library.
3+
*
4+
* (c) 2020 Micro:bit Educational Foundation and contributors.
5+
* SPDX-License-Identifier: MIT
6+
*/
17
export * from './universal-hex';

src/utils.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* General utilities.
3+
*
4+
* (c) 2020 Micro:bit Educational Foundation and the project contributors.
5+
* SPDX-License-Identifier: MIT
6+
*/
7+
18
/**
29
* Convert from a string with a hexadecimal number into a Uint8Array byte array.
310
*

0 commit comments

Comments
 (0)