Skip to content

Commit 50326ef

Browse files
committed
fix: import isObject from type.helper for improved type checking
1 parent 879b389 commit 50326ef

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/core/parsers/yaml.parser.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import * as path from 'path';
2-
import { isObject } from 'util';
32

43
import { load, dump, JSON_SCHEMA } from 'js-yaml';
54

65
import { ILogger, IFileManager, UpdateYamlBlockOptions } from '../../types';
7-
import { isNonEmptyString } from '../helpers/type.helper';
6+
import { isNonEmptyString, isObject } from '../helpers/type.helper';
87
import { getLogger } from '../system/logger';
98

109
/**

0 commit comments

Comments
 (0)