cox.postposition
한글, 영문, 숫자에 대한 한글 조사를 선택하거나 적용합니다. 단, 영문은 모든 상황에 대해 100% 지원하지 않습니다.
예제
예제 보기
설치하기
NPM
$ npm install cox-postposition
npm install
을 통해 설치하는 경우 ES6
문법으로 작성한 원본 JS 파일을 참조합니다.
따라서 ES6
를 지원하지 않는 환경에서는 UMD 사용법을 참고하여 사용하시기 바랍니다
CDN
https://cdn.rawgit.com/coxcore/postposition/1.0.1/dist/cox.postposition.min.js
DOWNLOAD
사용법
ES6
import postposition from 'cox-postposition';
const kor = postposition.put('고양이', '을');
const eng = postposition.put('cat', '을');
const num = postposition.put('8', '을');
console.log(kor);
console.log(eng);
console.log(num);
UMD - ES6 Module을 지원하지 않는 환경
const postposition = require('cox-postposition/dist/cox.postposition.min.js');
const kor = postposition.put('고양이', '을');
const eng = postposition.put('cat', '을');
const num = postposition.put('8', '을');
console.log(kor);
console.log(eng);
console.log(num);
HTML
<script src="https://cdn.rawgit.com/coxcore/postposition/1.0.1/dist/cox.postposition.min.js"></script>
<script>
var kor = cox.postposition.put('고양이', '을');
var eng = cox.postposition.put('cat', '을');
var num = cox.postposition.put('8', '을');
console.log(kor);
console.log(eng);
console.log(num);
</script>
Details
import postposition from 'cox-postposition';
postposition.check('바다');
postposition.check('하늘');
postposition.check('바다', '로');
postposition.check('하늘', '로');
postposition.check('구름', '로');
postposition.pick('고양이', '이');
postposition.pick('고양이', '가');
postposition.pick('<고양이>', '가');
postposition.put('cat', '을');
postposition.put('cat', '를');
postposition.put('[cat]', '를');
postposition.put('고양이', '야', '아');
postposition.put('야옹', '야', '아');
const putEul = postposition.fix('을');
const putRang = postposition.fix('랑', '이랑');
putEul('바위');
putEul('rock');
putRang('바위');
putRang('rock');
개별 메서드만 사용할 수도 있습니다.
import { check, pick, put, fix } from 'cox-postposition';
check('바다');
pick('고양이', '이');
put('cat', '을');
const putEul = fix('을');
putEul('바위');
Method
check( text[, type] )
종성이 있는지 여부를 체크합니다.
text
: [필수] 종성이 있는지를 체크할 단어type
: [선택] 조사 타입('로/으로'인 경우 사용)return
: 종성이 있는지 여부
조사가 로/으로
가 아닌 경우는 type
파라미터를 생략해도 됩니다.
postposition.check('바다');
postposition.check('sea');
postposition.check('2');
postposition.check('필름');
postposition.check('film');
postposition.check('6');
조사가 로/으로
인 경우는 종성이 ㄹ
이면 종성이 없는 것으로 간주합니다. 단 로/으로
조사 타입에 대한 결과를 반환하는 것이지 로
나 으로
에 대해서 파라미터와 비교한 결과를 반환하는 것이 아닙니다.
postposition.check('가을', '로');
postposition.check('feel', '로');
postposition.check('7', '로');
pick( text, type[, special] )
단어에 맞는 조사를 반환합니다.
text
: [필수] 종성을 적용할 단어type
: [필수] 조사 타입, 종성이 없을 때 조사special
: [선택] 종성이 있을 때 조사return
: 적용할 조사
다음 조사에 대해서는 special
파라미터를 생략하고, 종성 유무와 관계 없이 둘 중 하나만 입력하면 됩니다.
postposition.pick('바다', '가');
postposition.pick('sea', '이');
postposition.pick('2', '가');
postposition.pick('필름', '가');
postposition.pick('film', '이');
postposition.pick('6', '가');
postposition.pick('가을', '으로');
postposition.pick('feel', '로');
postposition.pick('8', '으로');
기본 조사에서 지원하지 않는 경우는 직접 지정할 수 있습니다. 종성이 없는 조건, 종성이 있는 조건 순으로 파라미터를 전달합니다.
postposition.pick('바다', '야', '아');
postposition.pick('swimming', '랑', '이랑');
postposition.pick('1', '면', '이면');
put( text, type[, special] )
단어에 맞는 조사를 적용한 글자를 반환합니다.
text
: [필수] 종성을 적용할 단어type
: [필수] 조사 타입, 종성이 없을 때 조사special
: [선택] 종성이 있을 때 조사return
: 단어에 조사를 적용한 글자
pick
메서드와 동일한 처리를 하지만 대상 글자에 조사를 적용한 글자가 반환됩니다.
postposition.put('바다', '가');
postposition.put('sea', '이');
postposition.put('2', '가');
postposition.put('[9]', '이');
postposition.put('필름', '가');
postposition.put('film', '이');
postposition.put('6', '가');
postposition.put('"7"', '이');
postposition.put('가을', '으로');
postposition.put('feel', '로');
postposition.put('7', '으로');
postposition.put('(8)', '로');
pick
메서드와 동일하게 종성 여부에 따른 조사를 직접 지정할 수 있습니다.
postposition.put('바다', '야', '아');
postposition.put('swimming', '랑', '이랑');
postposition.put('7', '면', '이면');
postposition.put('드림(dream)', '라서', '이라서');
fix( type[, special] )
특정 조사를 처리하는 함수를 반환합니다.
type
: 조사 타입, 종성이 없을 때 조사special
: [선택] 종성이 있을 때 조사return
: 지정한 조사를 처리하는 함수 반환
특정 조사를 반복해서 처리하는 경우는 원하는 조사를 지정하여 함수를 생성할 수 있습니다.
const eun = postposition.fix('는');
const eul = postposition.fix('를');
const ya = postposition.fix('야', '아');
eun('구름');
eul('구름');
ya('구름');
Guide
한글은 종성에 따라 조사가 결정되므로 종성 유무를 파악하여 조사를 구분하도록 처리하고 있습니다. 단, 로/으로
에 한해서 ㄹ
종성은 없는 것으로 예외처리합니다.
영문의 경우는 영어 발음을 기준으로 처리합니다. 단, 영문의 경우는 발음을 표기하는 방식에 규칙이 없기 때문에 흔한 상황 위주로 분류하고 특수한 사례를 개별 관리하고 있습니다.
// me로 끝나는 단어
me -> me[미]는
some - some[썸]은
// oot로 끝나는 단어
root -> root[루트]를
foot -> foot[풋]을
한글의 영문 표기법에 따른 발음은 고려하지 않습니다.
[Ji-sung Park] park -> park[파크]를, 팍(X)
[So Ji-sub] sub -> sub[서브]를, 섭(X)
숫자의 경우는 한글 발음을 기준으로 합니다.
동물1 -> 동물1[일]을
animal3 -> animal3[삼]을, 쓰리(X)
License
MIT