Skip to content

Commit

Permalink
fixup! review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Apr 28, 2024
1 parent b4c97b6 commit 3ba8c71
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/base-zone/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ export * from './exports.js';
// Utilities for creating zones.
export * from './make-once.js';
export * from './keys.js';
export * from './is-passable.js';
8 changes: 8 additions & 0 deletions packages/base-zone/src/is-passable.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { isPassable as realIsPassable } from '@endo/pass-style';

/**
* @deprecated Import `isPassable` directly from `@endo/pass-style`
* @param {any} specimen
* @returns {specimen is Passable}
*/
export const isPassable = specimen => realIsPassable(specimen);

0 comments on commit 3ba8c71

Please sign in to comment.