Skip to content

Commit

Permalink
Move throws-on-prototype up one level
Browse files Browse the repository at this point in the history
  • Loading branch information
mroderick committed Jan 20, 2024
1 parent f0d878c commit e077e0c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/prototypes/copy-prototype-methods.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import throwsOnProto from "./throws-on-proto.mjs";
import throwsOnProto from "../throws-on-proto.mjs";
var call = Function.call;

var disallowedProperties = [
Expand Down
2 changes: 1 addition & 1 deletion lib/prototypes/index.test.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pkg from "@sinonjs/referee-sinon";
const { assert } = pkg;

import throwsOnProto from "./throws-on-proto.mjs";
import throwsOnProto from "../throws-on-proto.mjs";

import prototypes from "./index.mjs";
var arrayProto = prototypes.array;
Expand Down
File renamed without changes.

0 comments on commit e077e0c

Please sign in to comment.