@typespec/prettier-plugin-typespec 0.61.0-dev.0 → 0.61.0-dev.1
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/dist/index.js +1 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1344,9 +1344,7 @@ function compilerAssert(condition, message, target) {
|
|
|
1344
1344
|
/**
|
|
1345
1345
|
* A specially typed version of `Array.isArray` to work around [this issue](https://github.com/microsoft/TypeScript/issues/17002).
|
|
1346
1346
|
*/
|
|
1347
|
-
function isArray(
|
|
1348
|
-
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
1349
|
-
arg) {
|
|
1347
|
+
function isArray(arg) {
|
|
1350
1348
|
return Array.isArray(arg);
|
|
1351
1349
|
}
|
|
1352
1350
|
/**
|