josa.js는 한국어 조사인 은/는, 을/를, 이/가를 구분해주는 자바스크립트 라이브러리입니다.
웹 페이지에 josa.js 파일을 삽입합니다.
<script src="josa.js" type="text/javascript"></script>
josa.js 스크립트를 실행하면 전역 객체에 Josa 객체가 노출됩니다.
word
와 format
에 해당하는 조사를 돌려줍니다.
Josa.c('사과','을/를'); // '를'
Josa.c('귤','이/가'); // '이'
Josa.c('바나나','은/는'); // '는'
Josa.c
의 반환값에는 word
자체는 포함되지 않는다는걸 주의하세요.
format
에는 '이/가', '은/는', '을/를' 을 사용할 수 있고 짧은 이름도 가능합니다.
Josa.c('사과','을/를'); // '를'
Josa.c('사과','을'); // '를'
Josa.c('사과','를'); // '를'
Josa.c('사과','을를'); // '를'
코드의 가독성을 위해 Josa.c
를 wrapping한 함수를 사용하는 것이 좋습니다.
var word = '임의의 단어'
, f = function(word, format){
return word + Josa.c(word, format);
}
;
alert('당신은' + word + Josa.c(word, '을/를') + '선택하셨습니다.');
alert('당신은' + f(word, '을/를') + '선택하셨습니다.'); //위보다 결과를 예상하기 쉬움
(The MIT License)
Copyright (c) 2012 Jaemin Jo
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.