Skip to content

Commit f1d80f3

Browse files
committed
fix: fix func names
1 parent 13ae85b commit f1d80f3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/loaders/json.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default async function ( buffer, map, meta ) {
1+
export default async function jsonLoader ( buffer, map, meta ) {
22
const callback = this.async(),
33
options = this.getOptions();
44

lib/loaders/po.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default async function ( buffer, map, meta ) {
1+
export default async function poLoader ( buffer, map, meta ) {
22
const callback = this.async(),
33
options = this.getOptions();
44

lib/loaders/yaml.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default async function ( buffer, map, meta ) {
1+
export default async function yamlLoader ( buffer, map, meta ) {
22
const callback = this.async(),
33
options = this.getOptions();
44

0 commit comments

Comments
 (0)