UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

6 lines 283 B
/** * Returns true when an import source is either the package root or one of its subpath entrypoints. */ export function isImportFromPackage(source, packageName) { return typeof source === 'string' && (source === packageName || source.startsWith("".concat(packageName, "/"))); }