0.0.9 • Published 4 years ago

file-comment v0.0.9

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

FileComment

npm version License

  • FileComment에서는 아래와 같은 기능을 할 수 있습니다.
  1. 주석 달기
  2. 함수 삭제

1. 주석달기

Parameters

functionName: fileComment

NameTypescript
dirstring검색할 Path
findStrstring찾을 문자열
extstring확장자
addStrstring넣을 주석
fileFiltersstring검색할 파일명 대소문자 구분!
tabNumnumber추가할 탭 개수

example

const fc = require("file-comment");
const BASE_PATH = "/Users/anminam/Documents/program";

fc.fileComment({
  dir: BASE_PATH,
  findStr: "methodName: function(param1, param2) {",
  ext: ".js",
  addStr: `
    /**
        * 주석 설명 블라블라.
        * @method methodName
        * @category CategoryName
        * @param {string}  param1 is Foo
        * @param {Object}  param2 is FOO
        * @return {void}
    */
`,
  fileFilters: ["Core.js"],
  tabNum: 2,
});

2. 함수 삭제

Parameters

functionName: removeFunction

NameTypescript
dirstring검색할 Path
findStrstring찾을 문자열
extstring확장자
fileFiltersstring검색할 파일명 대소문자 구분!

example

const fc = require("file-comment");
const BASE_PATH = "/Users/anminam/Documents/program";

fc.removeFunction({
  dir: BASE_PATH,
  findStr: "methodName: function() {",
  ext: ".js",
  // fileFilters: ["Core.js"],
});

TEST

$ npm test

License

fileComment is MIT licensed.

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.5

4 years ago

0.0.6

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago