uti 7.1.2 → 7.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [![npm](https://img.shields.io/npm/v/uti.svg)](https://www.npmjs.com/package/uti)
2
2
  [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
3
- [![Open Bundle](https://bundlejs.com/badge-light.svg)](https://bundlejs.com/?q=uti)
3
+ [![bundlejs](https://deno.bundlejs.com/?q=uti\&badge=detailed)](https://bundlejs.com/?q=uti)
4
4
  [![downloads](http://img.shields.io/npm/dm/uti.svg?style=flat-square)](https://npmjs.org/package/uti)
5
5
  [![GitHub Issues](https://img.shields.io/github/issues/arlac77/uti.svg?style=flat-square)](https://github.com/arlac77/uti/issues)
6
6
  [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Farlac77%2Futi%2Fbadge\&style=flat)](https://actions-badge.atrox.dev/arlac77/uti/goto)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uti",
3
- "version": "7.1.2",
3
+ "version": "7.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,7 +34,7 @@
34
34
  "browser-ava": "^1.3.38",
35
35
  "c8": "^7.13.0",
36
36
  "documentation": "^14.0.1",
37
- "semantic-release": "^21.0.1"
37
+ "semantic-release": "^21.0.2"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=14.18.3"
package/src/uti.mjs CHANGED
@@ -10,14 +10,8 @@ import types from "./well-known-utis.mjs";
10
10
  */
11
11
  class UTI {
12
12
  constructor(name, conforms) {
13
- Object.defineProperties(this, {
14
- name: {
15
- value: name
16
- },
17
- conforms: {
18
- value: conforms
19
- }
20
- });
13
+ this.name = name;
14
+ this.conforms = conforms;
21
15
  }
22
16
 
23
17
  /**