UNPKG

@skbkontur/storybook-addon-live-examples

Version:

Storybook live examples plugin

12 lines (11 loc) 374 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.detectNoInline = detectNoInline; function detectNoInline(code) { var clearedCode = code.split('\n').filter(function (line) { return line.startsWith('//') === false; }).join('\n').trim(); return clearedCode.startsWith('<') === false && clearedCode.startsWith('//') === false; }