UNPKG

prettierx

Version:

prettierX - a less opinionated fork of the Prettier code formatter

15 lines (11 loc) 226 B
"use strict"; function hasPragma(text) { return /^\s*#[^\S\n]*@(format|prettier)\s*(\n|$)/.test(text); } function insertPragma(text) { return "# @format\n\n" + text; } module.exports = { hasPragma, insertPragma, };