File tree Expand file tree Collapse file tree 5 files changed +26
-1
lines changed Expand file tree Collapse file tree 5 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1
- # micro: bit Universal Hex
1
+ # micro: bit Universal Hex TypeScript Library
2
2
3
3
[ ![ CircleCI] ( https://circleci.com/gh/microbit-foundation/microbit-universal-hex.svg?style=svg )] ( https://circleci.com/gh/microbit-foundation/microbit-universal-hex )
4
4
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Tests for utilities.
3
+ *
4
+ * (c) 2020 Micro:bit Educational Foundation and contributors.
5
+ * SPDX-License-Identifier: MIT
6
+ */
1
7
import * as utils from '../utils' ;
2
8
3
9
describe ( 'Test hexStrToBytes()' , ( ) => {
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Generate and process Intel Hex records.
3
+ *
4
+ * (c) 2020 Micro:bit Educational Foundation and contributors.
5
+ * SPDX-License-Identifier: MIT
6
+ */
1
7
import * as utils from './utils' ;
2
8
3
9
/** Values for the Record Type field, including Universal Hex custom types. */
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Exposing exports for the library.
3
+ *
4
+ * (c) 2020 Micro:bit Educational Foundation and contributors.
5
+ * SPDX-License-Identifier: MIT
6
+ */
1
7
export * from './universal-hex' ;
Original file line number Diff line number Diff line change
1
+ /**
2
+ * General utilities.
3
+ *
4
+ * (c) 2020 Micro:bit Educational Foundation and the project contributors.
5
+ * SPDX-License-Identifier: MIT
6
+ */
7
+
1
8
/**
2
9
* Convert from a string with a hexadecimal number into a Uint8Array byte array.
3
10
*
You can’t perform that action at this time.
0 commit comments