Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bmesuere committed Aug 1, 2024
1 parent 8044011 commit ed97bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/formatters/to_xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,6 @@ function _isArray(array) {
return array instanceof Array;
}

export function toXML(value: Object, replacer?: Function, space?: Number | String): String {
export function toXML(value: object, replacer?: function, space?: number | string): string {
return _toXML(value, replacer, space);
}

0 comments on commit ed97bab

Please sign in to comment.